diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-05 22:13:53 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-05 22:13:53 +0000 |
commit | eb538def799eb54e1ce29996dfbc56f4c960e3f3 (patch) | |
tree | dbe37e09828060c9a423cb6591ca1242e844c804 /views/default/admin/plugins.php | |
parent | 20f40a7216bb3ef7b9961a24bc329e91b93b8353 (diff) | |
download | elgg-eb538def799eb54e1ce29996dfbc56f4c960e3f3.tar.gz elgg-eb538def799eb54e1ce29996dfbc56f4c960e3f3.tar.bz2 |
Added category and name as valid plugin manifest keys/values.
git-svn-id: http://code.elgg.org/elgg/trunk@5629 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/plugins.php')
-rw-r--r-- | views/default/admin/plugins.php | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/views/default/admin/plugins.php b/views/default/admin/plugins.php index a2bc99b1c..d92c837f6 100644 --- a/views/default/admin/plugins.php +++ b/views/default/admin/plugins.php @@ -12,11 +12,35 @@ global $CONFIG; $ts = time(); $token = generate_action_token($ts); +$categories = array_merge(array('' => elgg_echo('admin:plugins:categories:all')), $vars['categories']); + +$category_pulldown = elgg_view('input/pulldown', array( + 'internalname' => 'category', + 'options_values' => $categories, + 'value' => $vars['show_category'] +)); + +$category_button = elgg_view('input/button', array( + 'value' => elgg_echo('filter'), + 'class' => 'action_button' +)); + +$category_form = elgg_view('input/form', array( + 'body' => $category_pulldown . $category_button +)); // Page Header elements $title = elgg_view_title(elgg_echo('admin:plugins')); -$buttons = "<a class='action_button' href=\"{$CONFIG->url}action/admin/plugins/enableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('enableall')."</a>"; -$buttons .= "<a class='action_button' href=\"{$CONFIG->url}action/admin/plugins/disableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('disableall')."</a> "; + +// @todo Until "en/disable all" means "All plugins on this page" hide when not looking at all. +if (!isset($vars['show_category']) || empty($vars['show_category'])) { + $buttons = "<a class='action_button' href=\"{$CONFIG->url}action/admin/plugins/enableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('enableall')."</a> <a class='action_button disabled' href=\"{$CONFIG->url}action/admin/plugins/disableall?__elgg_token=$token&__elgg_ts=$ts\">".elgg_echo('disableall')."</a> "; + $buttons .= "<br /><br />"; +} else { + $buttons = ''; +} + +$buttons .= $category_form; // construct page header ?> @@ -45,4 +69,4 @@ $n = 0; foreach ($installed_plugins as $plugin => $data) { echo elgg_view("admin/plugins_opt/plugin", array('plugin' => $plugin, 'details' => $data, 'maxorder' => $max, 'order' => array_search($plugin, $plugin_list))); $n++; -}
\ No newline at end of file +} |