[693] | 1 | <?php |
---|
| 2 | # ***** BEGIN LICENSE BLOCK ***** |
---|
| 3 | # |
---|
[2402] | 4 | # This file is part of clean:config, a plugin for Dotclear 2 |
---|
[3391] | 5 | # Copyright (C) 2007-2016 Moe (http://gniark.net/) |
---|
[693] | 6 | # |
---|
[2402] | 7 | # clean:config is free software; you can redistribute it and/or |
---|
| 8 | # modify it under the terms of the GNU General Public License v2.0 |
---|
| 9 | # as published by the Free Software Foundation. |
---|
[693] | 10 | # |
---|
| 11 | # clean:config is distributed in the hope that it will be useful, |
---|
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
[2402] | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
[693] | 14 | # GNU General Public License for more details. |
---|
| 15 | # |
---|
[2402] | 16 | # You should have received a copy of the GNU General Public |
---|
| 17 | # License along with this program. If not, see |
---|
| 18 | # <http://www.gnu.org/licenses/>. |
---|
[693] | 19 | # |
---|
[2402] | 20 | # Icon (icon.png) and images are from Silk Icons : |
---|
| 21 | # <http://www.famfamfam.com/lab/icons/silk/> |
---|
[693] | 22 | # |
---|
| 23 | # ***** END LICENSE BLOCK ***** |
---|
| 24 | |
---|
| 25 | if (!defined('DC_RC_PATH')) {return;} |
---|
| 26 | |
---|
| 27 | $this->registerModule( |
---|
[2615] | 28 | /* Name */ "clean:config", |
---|
[3394] | 29 | /* Description */ "Delete the blog settings or global settings", |
---|
| 30 | /* Author */ "Moe (http://gniark.net/), Pierre Van Glabeke", |
---|
| 31 | /* Version */ "1.4.5", |
---|
[3391] | 32 | /* Properties */ |
---|
| 33 | array( |
---|
| 34 | 'permissions' => null, |
---|
| 35 | 'type' => 'plugin', |
---|
| 36 | 'dc_min' => '2.9', |
---|
| 37 | 'support' => 'http://lab.dotclear.org/wiki/plugin/cleanConfig', |
---|
| 38 | 'details' => 'http://plugins.dotaddict.org/dc2/details/cleanConfig' |
---|
| 39 | ) |
---|
| 40 | ); |
---|