aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/find.php
blob: 0ad9f20188a2c9904f828985116d54f29ed69d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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 elgg_get_site_url(); ?>pg/groups/world/" 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="submit" value="<?php echo elgg_echo('search:go'); ?>" />
</form>