diff options
author | Anika Henke <anika@selfthinker.org> | 2011-09-10 20:11:29 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-09-10 20:23:40 +0100 |
commit | 29d511bfa507384ae0872f75fb54acb44b1e915e (patch) | |
tree | bd9b3138f288fbc6786f3b28c7f3d438bf79c36f /lib/plugins/revert | |
parent | 28b19f13203b5263ad89854a9c1df221975e4c38 (diff) | |
parent | a95a7bf3a77d3c38a54af67b2f7584c480381691 (diff) | |
download | rpg-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 'lib/plugins/revert')
-rw-r--r-- | lib/plugins/revert/admin.php | 14 | ||||
-rw-r--r-- | lib/plugins/revert/plugin.info.txt | 6 |
2 files changed, 6 insertions, 14 deletions
diff --git a/lib/plugins/revert/admin.php b/lib/plugins/revert/admin.php index e188e2488..2aaf1395f 100644 --- a/lib/plugins/revert/admin.php +++ b/lib/plugins/revert/admin.php @@ -21,20 +21,6 @@ class admin_plugin_revert extends DokuWiki_Admin_Plugin { } /** - * return some info - */ - function getInfo(){ - return array( - 'author' => 'Andreas Gohr', - 'email' => 'andi@splitbrain.org', - 'date' => '2008-12-10', - 'name' => 'Revert Manager', - 'desc' => 'Allows you to mass revert recent edits', - 'url' => 'http://dokuwiki.org/plugin:revert', - ); - } - - /** * access for managers */ function forAdminOnly(){ diff --git a/lib/plugins/revert/plugin.info.txt b/lib/plugins/revert/plugin.info.txt new file mode 100644 index 000000000..5bb6f3413 --- /dev/null +++ b/lib/plugins/revert/plugin.info.txt @@ -0,0 +1,6 @@ +author Andreas Gohr +email andi@splitbrain.org +date 2008-12-10 +name Revert Manager +desc Allows you to mass revert recent edits +url http://dokuwiki.org/plugin:revert |