aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/edit.php
blob: 0634f3ac577febd93cb8f8cd9b583cdc030db438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Edit/create a group
 */

$entity = elgg_get_array_value('entity', $vars, null);

$form_vars = array('enctype' => 'multipart/form-data');
$body_vars = array('entity' => $entity);
echo elgg_view_form('groups/edit', $form_vars, $body_vars);

if ($entity) {
	echo '<div class="delete_group">';
	echo elgg_view_form('groups/delete', array(), array('entity' => $entity));
	echo '</div>';
}