fac/_define.php

31 lines
1003 B
PHP
Raw Permalink Normal View History

2021-08-20 15:44:19 +00:00
<?php
2021-09-02 19:08:55 +00:00
/**
2023-10-16 21:09:29 +00:00
* @file
* @brief The plugin fac definition
* @ingroup fac
2022-11-20 20:13:56 +00:00
*
2023-10-16 21:09:29 +00:00
* @defgroup fac Plugin fac.
2022-11-20 20:13:56 +00:00
*
2023-10-16 21:09:29 +00:00
* Add RSS/Atom feeds after entries content.
2022-11-20 20:13:56 +00:00
*
2023-10-16 21:09:29 +00:00
* @author Jean-Christian Denis (author)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-02 19:08:55 +00:00
*/
2023-10-16 21:09:29 +00:00
declare(strict_types=1);
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-10-24 19:27:03 +00:00
'1.5.1',
2021-08-20 16:39:12 +00:00
[
2023-10-16 21:09:29 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'settings' => ['blog' => '#params.' . basename(__DIR__) . '_params'],
'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-08-20 16:39:12 +00:00
]
2022-11-20 20:13:56 +00:00
);