2022-11-27 14:38:40 +00:00
|
|
|
<?php
|
2022-11-27 20:22:12 +00:00
|
|
|
/**
|
2023-10-11 21:33:47 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin dcLog definition
|
|
|
|
* @ingroup dcLog
|
2022-11-27 20:22:12 +00:00
|
|
|
*
|
2023-10-11 21:33:47 +00:00
|
|
|
* @defgroup dcLog Plugin dcLog.
|
2022-11-27 20:22:12 +00:00
|
|
|
*
|
2023-10-11 21:33:47 +00:00
|
|
|
* Displays Dotclear logs.
|
2022-11-27 20:22:12 +00:00
|
|
|
*
|
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
|
2022-11-27 20:22:12 +00:00
|
|
|
*/
|
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",
|
2022-11-27 20:22:12 +00:00
|
|
|
'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',
|
2022-11-27 20:22:12 +00:00
|
|
|
[
|
2023-10-11 21:33:47 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
2022-11-27 20:22:12 +00:00
|
|
|
'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 20:22:12 +00:00
|
|
|
]
|
2022-11-27 14:38:40 +00:00
|
|
|
);
|