pacKman/_define.php

30 lines
896 B
PHP
Raw Permalink Normal View History

2021-08-16 20:48:26 +00:00
<?php
2021-09-02 20:14:32 +00:00
/**
2023-10-09 20:06:50 +00:00
* @file
* @brief The plugin pacKman definition
* @ingroup pacKman
2021-11-01 10:39:02 +00:00
*
2023-10-09 20:06:50 +00:00
* @defgroup pacKman Plugin pacKman.
2021-11-01 10:39:02 +00:00
*
2023-10-09 20:06:50 +00:00
* Manage your Dotclear packages.
2021-11-01 10:39:02 +00:00
*
2023-10-09 20:06:50 +00:00
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-02 20:14:32 +00:00
*/
2022-12-17 21:12:10 +00:00
declare(strict_types=1);
2021-08-16 20:48:26 +00:00
$this->registerModule(
2023-03-11 17:46:23 +00:00
'Packages repository',
'Manage your Dotclear packages',
'Jean-Christian Denis',
2023-11-04 19:34:18 +00:00
'2023.11.04',
2021-08-17 21:12:33 +00:00
[
2023-10-21 20:48:54 +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',
2021-08-17 21:12:33 +00:00
]
2021-11-06 13:56:29 +00:00
);