2022-11-27 14:38:40 +00:00
|
|
|
<?php
|
2022-11-27 20:22:12 +00:00
|
|
|
/**
|
|
|
|
* @brief dcLog, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
2022-12-20 21:35:39 +00:00
|
|
|
* @author Tomtom and Contributors
|
2022-11-27 20:22:12 +00:00
|
|
|
*
|
2022-12-03 20:36:21 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
2022-11-27 20:22:12 +00:00
|
|
|
* @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",
|
2022-11-27 20:22:12 +00:00
|
|
|
'Displays Dotclear logs',
|
2022-12-20 21:35:39 +00:00
|
|
|
'Tomtom and Contributors',
|
2023-05-13 08:25:46 +00:00
|
|
|
'1.4',
|
2022-11-27 20:22:12 +00:00
|
|
|
[
|
2023-05-10 09:24:10 +00:00
|
|
|
'requires' => [
|
|
|
|
['php', '8.1'],
|
|
|
|
['core', '2.26'],
|
|
|
|
],
|
2022-11-27 20:22:12 +00:00
|
|
|
'permissions' => null,
|
|
|
|
'type' => 'plugin',
|
2022-12-20 21:27:28 +00:00
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
2022-11-27 20:22:12 +00:00
|
|
|
]
|
2022-11-27 14:38:40 +00:00
|
|
|
);
|