aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/photos/image/tag.php
blob: 31869be9efe60a02a930d9f8c7fdf4b106787d1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
 * Tag select form body
 *
 * @uses $vars['entity']
 *
 * @author Cash Costello
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
 */

echo '<div class="elgg-col elgg-col-4of5">';

echo elgg_view('input/autocomplete', array(
	'name' => 'username',
	'match_on' => 'friends',
));

echo elgg_view('input/hidden', array(
	'name' => 'guid',
	'value' => $vars['entity']->getGUID(),
));

echo elgg_view('input/hidden', array(
	'name' => 'coordinates',
));

echo '</div>';

echo '<div class="elgg-col elgg-col-1of5 center">';
echo elgg_view('input/submit', array(
	'value' => elgg_echo('tidypics:actiontag'),
));
echo '</div>';