dcLog/_define.php

34 lines
915 B
PHP
Raw Normal View History

2022-11-27 14:38:40 +00:00
<?php
/**
* @brief dcLog, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
2022-12-20 21:35:39 +00:00
* @author Tomtom and Contributors
*
2022-12-03 20:36:21 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
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-08-14 22:04:12 +00:00
'1.6',
[
2023-05-10 09:24:10 +00:00
'requires' => [
['php', '8.1'],
2023-07-28 21:39:25 +00:00
['core', '2.27'],
2023-05-10 09:24:10 +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 14:38:40 +00:00
);