dcLog/_define.php

31 lines
909 B
PHP
Raw Normal View History

2022-11-27 14:38:40 +00:00
<?php
/**
2023-10-11 21:33:47 +00:00
* @file
* @brief The plugin dcLog definition
* @ingroup dcLog
*
2023-10-11 21:33:47 +00:00
* @defgroup dcLog Plugin dcLog.
*
2023-10-11 21:33:47 +00:00
* Displays Dotclear logs.
*
2023-10-11 21:33:47 +00:00
* @author Tomtom (author)
* @author Jean-Christian Denis (latest)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-10-11 21:33:47 +00:00
declare(strict_types=1);
2022-11-27 14:38:40 +00:00
$this->registerModule(
2023-03-11 15:07:26 +00:00
"Dotclear's logs",
'Displays Dotclear logs',
2022-12-20 21:35:39 +00:00
'Tomtom and Contributors',
2023-10-11 21:33:47 +00:00
'1.7.1',
[
2023-10-11 21:33:47 +00:00
'requires' => [['core', '2.28']],
'permissions' => null,
'type' => 'plugin',
2023-08-14 22:04:12 +00:00
'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-27 14:38:40 +00:00
);