diff options
author | cash <cash.costello@gmail.com> | 2011-07-02 11:36:53 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-07-02 11:36:53 -0400 |
commit | ae5ad0a65508725871159ffb6a068fcb2084aad7 (patch) | |
tree | 60d01e69b849e96bff64f92189eb79956fe2fa32 /mod/developers/views/default/forms | |
parent | f5f3f205e97c2a3219897dd14de7d57659ce1181 (diff) | |
download | elgg-ae5ad0a65508725871159ffb6a068fcb2084aad7.tar.gz elgg-ae5ad0a65508725871159ffb6a068fcb2084aad7.tar.bz2 |
added the inspect tool to developers tool plugin
Diffstat (limited to 'mod/developers/views/default/forms')
-rw-r--r-- | mod/developers/views/default/forms/developers/inspect.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/developers/views/default/forms/developers/inspect.php b/mod/developers/views/default/forms/developers/inspect.php new file mode 100644 index 000000000..a1b433fea --- /dev/null +++ b/mod/developers/views/default/forms/developers/inspect.php @@ -0,0 +1,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>'; |