zoneclearFeedServer/_define.php

32 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2015-04-25 19:25:03 +00:00
<?php
/**
2023-10-14 13:41:43 +00:00
* @file
* @brief The plugin zoneclearFeedServer definition
* @ingroup zoneclearFeedServer
2021-11-06 15:30:19 +00:00
*
2023-10-14 13:41:43 +00:00
* @defgroup zoneclearFeedServer Plugin zoneclearFeedServer.
2021-11-06 15:30:19 +00:00
*
2023-10-14 13:41:43 +00:00
* Mix your blog with a feeds planet.
2021-11-06 15:30:19 +00:00
*
2023-10-14 13:41:43 +00:00
* @author Jean-Christian Denis (author)
* @author Pierre Van Glabeke
* @author BG
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-10-14 13:41:43 +00:00
declare(strict_types=1);
2015-04-25 19:25:03 +00:00
$this->registerModule(
2021-09-12 20:35:57 +00:00
'Feeds server',
'Mix your blog with a feeds planet',
'Jean-Christian Denis, BG, Pierre Van Glabeke',
2023-11-04 21:45:37 +00:00
'2023.11.04',
[
2023-10-14 13:41:43 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'type' => 'plugin',
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
]
2021-11-06 15:30:19 +00:00
);