aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/find.php
blob: 5032a74fbd71a0540e07369acfc7c5666e431653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

	/**
	 * A simple group search by tag view
	 **/

$tag_string = elgg_echo('groups:search:tags');
	 
?>
<h3><?php echo elgg_echo('groups:searchtag'); ?></h3>
<form id="groupsearchform" action="<?php echo $vars['url']; ?>pg/search/" method="get">
	<input type="text" name="tag" value="<?php echo $tag_string; ?>" onclick="if (this.value=='<?php echo $tag_string; ?>') { this.value='' }" class="search_input" />
	<input type="hidden" name="entity_type" value="group" />
	<input type="hidden" name="subtype" value="" />
	<input type="hidden" name="tagtype" value="" />
	<input type="hidden" name="owner_guid" value="0" />
	<input type="submit" value="<?php echo elgg_echo('go'); ?>" />
</form>