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-05-13 13:18:39 +00:00
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
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-05-13 13:18:39 +00:00
'2023.05.13',
[
2023-04-23 11:54:36 +00:00
'requires' => [['core', '2.26']],
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',
'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
);