postExpired/_define.php

31 lines
984 B
PHP
Raw Permalink Normal View History

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:07:26 +00:00
$this->registerModule(
'Expired entries',
2022-11-20 20:43:32 +00:00
'Change entries options at a given date',
'Jean-Christian Denis and Contributors',
2023-11-04 20:22:19 +00:00
'2023.11.04',
[
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',
]
2022-11-20 20:43:32 +00:00
);