1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | tagFlash - a plugin for Dotclear | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2010,2015 Nicolas Roudaire http://www.nikrou.net | |
---|
6 | // | Copyright(C) 2010 Guenaël | |
---|
7 | // +-----------------------------------------------------------------------+ |
---|
8 | // | This program is free software; you can redistribute it and/or modify | |
---|
9 | // | it under the terms of the GNU General Public License version 2 as | |
---|
10 | // | published by the Free Software Foundation. | |
---|
11 | // | | |
---|
12 | // | This program is distributed in the hope that it will be useful, but | |
---|
13 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
14 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
15 | // | General Public License for more details. | |
---|
16 | // | | |
---|
17 | // | You should have received a copy of the GNU General Public License | |
---|
18 | // | along with this program; if not, write to the Free Software | |
---|
19 | // | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
---|
20 | // | MA 02110-1301 USA. | |
---|
21 | // +-----------------------------------------------------------------------+ |
---|
22 | |
---|
23 | if (!defined('DC_RC_PATH')) { return; } |
---|
24 | |
---|
25 | $this->registerModule( |
---|
26 | /* Name */ "Tag Flash", |
---|
27 | /* Description*/ "Flash based Tag Cloud for Dotclear", |
---|
28 | /* Author */ "Gwénaël Després (based on WordPress plugin by Roy Tanck)", |
---|
29 | /* Version */ "1.2.2", |
---|
30 | /* Permissions */ "usage,contentadmin", |
---|
31 | /* Properties */ array('type' => 'plugin', |
---|
32 | 'dc_min' => '2.6', |
---|
33 | 'support' => 'http://forum.dotclear.net/viewtopic.php?id=34559', |
---|
34 | 'details' => 'http://plugins.dotaddict.org/dc2/details/tagflash' |
---|
35 | ) |
---|
36 | ); |
---|