34 lines
999 B
PHP
34 lines
999 B
PHP
<?php
|
|
/**
|
|
* @brief postExpired, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugin
|
|
*
|
|
* @author Jean-Christian Denis and Contributors
|
|
*
|
|
* @copyright Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
if (!defined('DC_RC_PATH')) {
|
|
return null;
|
|
}
|
|
|
|
$this->registerModule(
|
|
'Expired entries',
|
|
'Change entries options at a given date',
|
|
'Jean-Christian Denis and Contributors',
|
|
'2023.03.21',
|
|
[
|
|
'requires' => [['core', '2.25']],
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
dcAuth::PERMISSION_USAGE,
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
]),
|
|
'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',
|
|
]
|
|
);
|