[1212] | 1 | <?php |
---|
| 2 | # ***** BEGIN LICENSE BLOCK ***** |
---|
| 3 | # |
---|
| 4 | # This file is part of External Search, a plugin for Dotclear 2 |
---|
| 5 | # Copyright (C) 2009 Moe (http://gniark.net/) |
---|
| 6 | # |
---|
| 7 | # External Search 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. |
---|
| 10 | # |
---|
| 11 | # External Search is distributed in the hope that it will be useful, |
---|
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | # GNU General Public License for more details. |
---|
| 15 | # |
---|
| 16 | # You should have received a copy of the GNU General Public License |
---|
| 17 | # along with this program; if not, write to the Free Software Foundation, |
---|
| 18 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 19 | # |
---|
| 20 | # ***** END LICENSE BLOCK ***** |
---|
| 21 | |
---|
| 22 | if (!defined('DC_RC_PATH')) {return;} |
---|
| 23 | |
---|
| 24 | $this->registerModule( |
---|
| 25 | /* Name */ 'External Search', |
---|
| 26 | /* Description*/ 'External search in a widget', |
---|
| 27 | /* Author */ 'Moe (http://gniark.net/)', |
---|
[3382] | 28 | /* Version */ '0.2', |
---|
| 29 | /* Properties */ |
---|
| 30 | array( |
---|
| 31 | 'permissions' => 'usage,contentadmin', |
---|
| 32 | 'type' => 'plugin', |
---|
| 33 | 'dc_min' => '2.7', |
---|
| 34 | 'support' => 'http://lab.dotclear.org/wiki/plugin/widgetExternalSearch', |
---|
| 35 | 'details' => 'http://plugins.dotaddict.org/dc2/details/widgetExternalSearch' |
---|
| 36 | ) |
---|
| 37 | ); |
---|