DotclearWatch/_define.php

31 lines
954 B
PHP
Raw Permalink Normal View History

2023-07-22 22:50:27 +00:00
<?php
2023-07-22 23:00:15 +00:00
/**
2023-10-09 20:38:35 +00:00
* @file
* @brief The plugin DotclearWatch definition
* @ingroup DotclearWatch
2023-07-22 23:00:15 +00:00
*
2023-10-09 20:38:35 +00:00
* @defgroup DotclearWatch Plugin DotclearWatch.
2023-07-22 23:00:15 +00:00
*
2023-10-09 20:38:35 +00:00
* QSend report about your Dotclear.
2023-07-22 23:00:15 +00:00
*
2023-10-09 20:38:35 +00:00
* @author Jean-Christian Denis
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2023-07-22 23:00:15 +00:00
*/
2023-10-09 20:38:35 +00:00
declare(strict_types=1);
2023-07-22 22:50:27 +00:00
$this->registerModule(
'Dotclear Watch',
'Send report about your Dotclear',
'Jean-Christian Denis and contributors',
2023-10-22 17:04:35 +00:00
'0.9.3',
2023-07-22 22:50:27 +00:00
[
2023-10-09 20:38:35 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'type' => 'plugin',
'support' => 'https://git.dotclear.watch/dw/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/dw/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/dw/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
2023-07-22 22:50:27 +00:00
]
);