2021-08-20 19:07:26 +00:00
|
|
|
<?php
|
2021-09-02 20:43:05 +00:00
|
|
|
/**
|
2023-10-19 20:59:35 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin postExpired definition
|
|
|
|
* @ingroup postExpired
|
2022-11-20 20:43:32 +00:00
|
|
|
*
|
2023-10-19 20:59:35 +00:00
|
|
|
* @defgroup postExpired Plugin postExpired.
|
2022-11-20 20:43:32 +00:00
|
|
|
*
|
2023-10-19 20:59:35 +00:00
|
|
|
* Change entries options at a given date.
|
2022-11-20 20:43:32 +00:00
|
|
|
*
|
2023-10-19 20:59:35 +00:00
|
|
|
* @author Tomtom (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-02 20:43:05 +00:00
|
|
|
*/
|
2023-10-19 20:59:35 +00:00
|
|
|
declare(strict_types=1);
|
2021-08-20 19:36:46 +00:00
|
|
|
|
2021-08-20 19:07:26 +00:00
|
|
|
$this->registerModule(
|
2021-08-20 19:36:46 +00:00
|
|
|
'Expired entries',
|
2022-11-20 20:43:32 +00:00
|
|
|
'Change entries options at a given date',
|
2021-08-20 19:36:46 +00:00
|
|
|
'Jean-Christian Denis and Contributors',
|
2023-11-04 20:22:19 +00:00
|
|
|
'2023.11.04',
|
2021-08-20 19:36:46 +00:00
|
|
|
[
|
2023-10-19 20:59:35 +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-08-20 19:36:46 +00:00
|
|
|
]
|
2022-11-20 20:43:32 +00:00
|
|
|
);
|