postslistOptions/_define.php

30 lines
951 B
PHP
Raw Normal View History

2022-11-28 23:14:55 +00:00
<?php
/**
2023-10-20 16:17:42 +00:00
* @file
* @brief The plugin postslistOptions definition
* @ingroup postslistOptions
2022-11-28 23:14:55 +00:00
*
2023-10-20 16:17:42 +00:00
* @defgroup postslistOptions Plugin dcLog.
2022-11-28 23:14:55 +00:00
*
2023-10-20 16:17:42 +00:00
* Add some options on admin posts list.
2022-11-28 23:14:55 +00:00
*
2023-10-20 16:17:42 +00:00
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2022-11-28 23:14:55 +00:00
*/
2023-10-20 16:17:42 +00:00
declare(strict_types=1);
2022-11-28 23:14:55 +00:00
$this->registerModule(
'Posts list options',
'Add some options on admin posts list',
'Jean-Christian Denis and Contributors',
2023-10-20 16:17:42 +00:00
'2023.10.20',
2022-11-28 23:14:55 +00:00
[
2023-10-20 16:17:42 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'type' => 'plugin',
'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-28 23:14:55 +00:00
]
);