postExpired/_define.php

34 lines
1.0 KiB
PHP
Raw Normal View History

2021-08-20 19:07:26 +00:00
<?php
2021-09-02 20:43:05 +00:00
/**
* @brief postExpired, a plugin for Dotclear 2
2022-11-20 20:43:32 +00:00
*
2021-09-02 20:43:05 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-20 20:43:32 +00:00
*
2021-09-02 20:43:05 +00:00
* @author Jean-Christian Denis and Contributors
2022-11-20 20:43:32 +00:00
*
2021-09-02 20:43:05 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-07-30 20:12:02 +00:00
if (!defined('DC_RC_PATH')) {
return null;
}
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-08-13 16:09:20 +00:00
'2023.08.13',
[
2023-07-30 20:12:02 +00:00
'requires' => [['core', '2.27']],
2022-11-20 20:43:32 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
2023-05-13 13:18:39 +00:00
dcCore::app()->auth::PERMISSION_USAGE,
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
2022-11-14 20:47:24 +00:00
]),
2023-03-22 00:01:50 +00:00
'type' => 'plugin',
2023-08-13 16:09:20 +00:00
'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
);