aboutsummaryrefslogtreecommitdiff
path: root/mod/developers/views/default/forms/developers/inspect.php
blob: a1b433feaa3f6e5129646cd4d5d3a2e66eaf629e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Configuration inspection form
 */

echo '<div>';
echo '<p>' . elgg_echo('developers:inspect:help') . '</p>';

echo elgg_view('input/dropdown', array(
	'name' => 'inspect_type',
	'options_values' => array(
		'Actions' => 'Actions',
		'Events' => 'Events',
		'Plugin Hooks' => 'Plugin Hooks',
		'Simple Cache' => 'Simple Cache',
		'Views' => 'Views',
		'Web Services' => 'Web Services',
		'Widgets' => 'Widgets',
	),
));

echo elgg_view('input/submit', array('value' => elgg_echo('submit')));
echo '</div>';