2015-04-25 19:25:03 +00:00
|
|
|
<?php
|
2021-09-11 09:56:57 +00:00
|
|
|
/**
|
|
|
|
* @brief zoneclearFeedServer, a plugin for Dotclear 2
|
2021-11-06 15:30:19 +00:00
|
|
|
*
|
2021-09-11 09:56:57 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-06 15:30:19 +00:00
|
|
|
*
|
2021-09-11 09:56:57 +00:00
|
|
|
* @author Jean-Christian Denis, BG, Pierre Van Glabeke
|
2021-11-06 15:30:19 +00:00
|
|
|
*
|
2021-09-11 09:56:57 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2023-05-07 22:41:21 +00:00
|
|
|
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
|
2021-09-11 09:56:57 +00:00
|
|
|
return null;
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2021-09-12 20:35:57 +00:00
|
|
|
'Feeds server',
|
2021-09-11 09:56:57 +00:00
|
|
|
'Mix your blog with a feeds planet',
|
|
|
|
'Jean-Christian Denis, BG, Pierre Van Glabeke',
|
2023-06-30 21:19:11 +00:00
|
|
|
'2023.06.30.2',
|
2021-09-11 09:56:57 +00:00
|
|
|
[
|
2023-05-10 07:59:38 +00:00
|
|
|
'requires' => [
|
|
|
|
['php', '8.1'],
|
|
|
|
['core', '2.26'],
|
|
|
|
],
|
2022-11-30 20:54:56 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
2023-05-07 22:41:21 +00:00
|
|
|
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
|
2022-11-30 20:54:56 +00:00
|
|
|
]),
|
|
|
|
'type' => 'plugin',
|
2022-12-10 16:16:41 +00:00
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
2021-09-11 09:56:57 +00:00
|
|
|
]
|
2021-11-06 15:30:19 +00:00
|
|
|
);
|