aboutsummaryrefslogtreecommitdiff
path: root/actions/admin/plugins
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-16 16:57:39 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-16 16:57:39 +0000
commite663d523186a12a41aca0541c996a6a0022912d8 (patch)
tree9c080159e9e3d702e85b5d4be80f70837a919416 /actions/admin/plugins
parent6609ac6ad0990f4b08d9a6783ff85a03a1daf7f3 (diff)
downloadelgg-e663d523186a12a41aca0541c996a6a0022912d8.tar.gz
elgg-e663d523186a12a41aca0541c996a6a0022912d8.tar.bz2
You can now reorder plugins.
git-svn-id: https://code.elgg.org/elgg/trunk@2274 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/admin/plugins')
-rw-r--r--actions/admin/plugins/reorder.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/actions/admin/plugins/reorder.php b/actions/admin/plugins/reorder.php
new file mode 100644
index 000000000..e1a45f368
--- /dev/null
+++ b/actions/admin/plugins/reorder.php
@@ -0,0 +1,51 @@
+<?php
+ /**
+ * Reorder plugin action.
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ require_once(dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php");
+
+ // block non-admin users
+ admin_gatekeeper();
+
+ // Validate the action
+ action_gatekeeper();
+
+ // Get the plugin
+ $mod = get_input('plugin');
+ $mod = str_replace('.','',$mod);
+ $mod = str_replace('/','',$mod);
+
+ // Get the new order
+ $order = (int) get_input('order');
+
+ // Get the current plugin list
+ $plugins = get_plugin_list();
+
+ // Inject the plugin order back into the list
+ if ($key = array_search($mod, $plugins)) {
+
+ unset($plugins[$key]);
+ while (isset($plugins[$order])) {
+ $order++;
+ }
+
+ $plugins[$order] = $mod;
+ }
+
+ // Disable
+ if (regenerate_plugin_list($plugins))
+ system_message(sprintf(elgg_echo('admin:plugins:reorder:yes'), $plugin));
+ else
+ register_error(sprintf(elgg_echo('admin:plugins:reorder:no'), $plugin));
+
+ forward($_SERVER['HTTP_REFERER']);
+
+?> \ No newline at end of file