aboutsummaryrefslogtreecommitdiff
path: root/actions/admin/plugins
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-27 15:09:14 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-27 15:09:14 +0000
commit8be81134528bdb0c791910b0fa509e6662f093d1 (patch)
tree226b620f97e9233018b074e00dbc03531928a4a9 /actions/admin/plugins
parent8b3b7c3babc25966286b2532803c0ac0a5106375 (diff)
downloadelgg-8be81134528bdb0c791910b0fa509e6662f093d1.tar.gz
elgg-8be81134528bdb0c791910b0fa509e6662f093d1.tar.bz2
Enable all / disable all functionality added
git-svn-id: https://code.elgg.org/elgg/trunk@2982 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/admin/plugins')
-rw-r--r--actions/admin/plugins/disableall.php36
-rw-r--r--actions/admin/plugins/enableall.php37
2 files changed, 73 insertions, 0 deletions
diff --git a/actions/admin/plugins/disableall.php b/actions/admin/plugins/disableall.php
new file mode 100644
index 000000000..efb91f773
--- /dev/null
+++ b/actions/admin/plugins/disableall.php
@@ -0,0 +1,36 @@
+<?php
+ /**
+ * Disable 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-2009
+ * @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();
+
+ $plugins = get_installed_plugins();
+
+ foreach ($plugins as $p => $data)
+ {
+ // Disable
+ if (disable_plugin($p))
+ system_message(sprintf(elgg_echo('admin:plugins:disable:yes'), $p));
+ else
+ register_error(sprintf(elgg_echo('admin:plugins:disable:no'), $p));
+ }
+
+ elgg_view_regenerate_simplecache();
+
+ forward($_SERVER['HTTP_REFERER']);
+ exit;
+?> \ No newline at end of file
diff --git a/actions/admin/plugins/enableall.php b/actions/admin/plugins/enableall.php
new file mode 100644
index 000000000..5e0d8c3b5
--- /dev/null
+++ b/actions/admin/plugins/enableall.php
@@ -0,0 +1,37 @@
+<?php
+ /**
+ * Enable 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-2009
+ * @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();
+
+ $plugins = get_installed_plugins();
+
+ foreach ($plugins as $p => $data)
+ {
+ // Enable
+ if (enable_plugin($p))
+ system_message(sprintf(elgg_echo('admin:plugins:enable:yes'), $p));
+ else
+ register_error(sprintf(elgg_echo('admin:plugins:enable:no'), $p));
+ }
+
+ elgg_view_regenerate_simplecache();
+
+ forward($_SERVER['HTTP_REFERER']);
+ exit;
+
+?> \ No newline at end of file