fac/_define.php

37 lines
1.0 KiB
PHP
Raw Normal View History

2021-08-20 15:44:19 +00:00
<?php
2021-09-02 19:08:55 +00:00
/**
* @brief fac, a plugin for Dotclear 2
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @author Jean-Christian Denis and Contributors
2022-11-20 20:13:56 +00:00
*
2021-09-02 19:08:55 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-20 15:44:19 +00:00
if (!defined('DC_RC_PATH')) {
2021-08-20 16:39:12 +00:00
return null;
2021-08-20 15:44:19 +00:00
}
$this->registerModule(
2021-09-02 19:08:55 +00:00
'Feed after content',
2021-08-20 16:39:12 +00:00
'Add RSS/Atom feeds after entries content',
'Jean-Christian Denis and Contributors',
2023-06-17 09:17:30 +00:00
'1.3.1',
2021-08-20 16:39:12 +00:00
[
2023-03-26 18:51:36 +00:00
'requires' => [['core', '2.26']],
2022-11-20 20:13:56 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_USAGE,
dcAuth::PERMISSION_CONTENT_ADMIN,
]),
2023-03-26 18:51:36 +00:00
'type' => 'plugin',
'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/repository.xml',
'settings' => [
2022-11-20 20:13:56 +00:00
'blog' => '#params.fac_params',
],
2021-08-20 16:39:12 +00:00
]
2022-11-20 20:13:56 +00:00
);