2022-12-30 16:52:56 +00:00
|
|
|
<?php
|
2022-12-31 18:07:05 +00:00
|
|
|
/**
|
2023-10-15 19:58:21 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin construction definition
|
|
|
|
* @ingroup construction
|
2022-12-31 18:07:05 +00:00
|
|
|
*
|
2023-10-15 19:58:21 +00:00
|
|
|
* @defgroup construction Plugin construction.
|
2022-12-31 18:07:05 +00:00
|
|
|
*
|
2023-10-15 19:58:21 +00:00
|
|
|
* Place your blog maintenance.
|
2022-12-31 18:07:05 +00:00
|
|
|
*
|
2023-10-15 19:58:21 +00:00
|
|
|
* @author Osku (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-12-31 18:07:05 +00:00
|
|
|
*/
|
2023-10-15 19:58:21 +00:00
|
|
|
declare(strict_types=1);
|
2022-12-30 16:52:56 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2022-12-31 18:07:05 +00:00
|
|
|
'Construction',
|
|
|
|
'Place your blog maintenance',
|
|
|
|
'Osku and contributors',
|
2023-10-15 19:58:21 +00:00
|
|
|
'1.9',
|
2022-12-31 18:07:05 +00:00
|
|
|
[
|
2023-10-15 19:58:21 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'priority' => 2000,
|
|
|
|
'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-12-31 18:07:05 +00:00
|
|
|
]
|
|
|
|
);
|