aboutsummaryrefslogtreecommitdiff
path: root/mod/categories/views/default/categories/settings.php
blob: 6c55d88f901e051e8421472ddcdf64f3bb735c7a (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
<?php

	echo elgg_view_title(elgg_echo('categories:settings'));

?>

	<div class="contentWrapper">
		<p>
			<?php echo elgg_echo('categories:explanation'); ?>
		</p>
	

<?php

	echo elgg_view(
						'input/form',
						array(
							'action' => $vars['url'] . 'action/categories/save',
							'method' => 'post',
							'body' => elgg_view('categories/settingsform',$vars)
						)
					);

?>

</div>