postExpired/_define.php

34 lines
978 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
*
* @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
*/
2021-08-20 19:07:26 +00:00
if (!defined('DC_RC_PATH')) {
return null;
}
2021-08-20 19:07:26 +00:00
$this->registerModule(
'Expired entries',
'Change entries options at a given date',
'Jean-Christian Denis and Contributors',
2022-11-14 20:47:24 +00:00
'2022.11.12',
[
2022-11-14 20:47:24 +00:00
'requires' => [['core', '2.24']],
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_USAGE,
dcAuth::PERMISSION_CONTENT_ADMIN,
]),
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/postExpired',
2021-09-02 20:43:05 +00:00
'details' => 'https://plugins.dotaddict.org/dc2/details/postExpired',
'repository' => 'https://raw.githubusercontent.com/JcDenis/postExpired/master/dcstore.xml'
]
);