1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Tag Flash - a plugin for Dotclear | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2010 Nicolas Roudaire http://www.nikrou.net | |
---|
6 | // | Copyright(C) 2010 Guenaël Després | |
---|
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 as published by | |
---|
10 | // | 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.1.0', |
---|
30 | /* Permissions */ 'usage,contentadmin' |
---|
31 | ); |
---|
32 | ?> |
---|