postExpired/_define.php

34 lines
1003 B
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
*/
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',
2022-12-25 20:50:41 +00:00
'2022.12.25',
[
2022-11-20 20:43:32 +00:00
'requires' => [['core', '2.24']],
'permissions' => dcCore::app()->auth->makePermissions([
2022-11-14 20:47:24 +00:00
dcAuth::PERMISSION_USAGE,
dcAuth::PERMISSION_CONTENT_ADMIN,
]),
2022-12-25 20:48:47 +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/dcstore.xml',
]
2022-11-20 20:43:32 +00:00
);