aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/sidebar/find.php
blob: de2a6e740dbcb036a593ee9e2ce1c168f064fc70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * Group search
 *
 * @package ElggGroups
 */
$url = elgg_get_site_url() . 'pg/groups/world';
$body = elgg_view_form('groups/search', array('action' => $url, 'method' => 'get'));

echo elgg_view('layout/objects/module', array(
	'title' => elgg_echo('groups:searchtag'),
	'body' => $body,
	'class' => 'elgg-module-aside',
));