summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2011-09-10 20:11:29 +0100
committerAnika Henke <anika@selfthinker.org>2011-09-10 20:23:40 +0100
commit29d511bfa507384ae0872f75fb54acb44b1e915e (patch)
treebd9b3138f288fbc6786f3b28c7f3d438bf79c36f /conf
parent28b19f13203b5263ad89854a9c1df221975e4c38 (diff)
parenta95a7bf3a77d3c38a54af67b2f7584c480381691 (diff)
downloadrpg-29d511bfa507384ae0872f75fb54acb44b1e915e.tar.gz
rpg-29d511bfa507384ae0872f75fb54acb44b1e915e.tar.bz2
Merge branch 'plugincontroller' of git://github.com/piyushmishra/dokuwiki into plugincontroller
This adds support for the config_cascade when enabling/disabling plugins, making farming easier. The changes have been implemented by Piyush Mishra and are a part of the new extension manager which will follow later. It's the result of a Google Summer of Code project, the official project page can be found at http://www.google-melange.com/gsoc/project/google/gsoc2011/piyushmishra/26001 Thanks to Piyush for the work and Google for sponsoring it! Conflicts: inc/lang/en/lang.php
Diffstat (limited to 'conf')
-rw-r--r--conf/plugins.protected.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/conf/plugins.protected.php b/conf/plugins.protected.php
new file mode 100644
index 000000000..26eb8888b
--- /dev/null
+++ b/conf/plugins.protected.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * This file configures the enabled/disabled status of plugins, which are also protected
+ * from changes by the extention manager. These settings will override any local settings.
+ * It is not recommended to change this file, as it is overwritten on DokuWiki upgrades.
+ */
+$plugins['acl'] = 1;
+$plugins['plugin'] = 1;
+$plugins['config'] = 1;
+$plugins['usermanager'] = 1;
+$plugins['revert'] = 1;