34 lines
865 B
PHP
34 lines
865 B
PHP
<?php
|
|
/**
|
|
* @brief dcLog, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugin
|
|
*
|
|
* @author Tomtom and Contributors
|
|
*
|
|
* @copyright Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
if (!defined('DC_RC_PATH')) {
|
|
return null;
|
|
}
|
|
|
|
$this->registerModule(
|
|
"Dotclear's logs",
|
|
'Displays Dotclear logs',
|
|
'Tomtom and Contributors',
|
|
'1.4',
|
|
[
|
|
'requires' => [
|
|
['php', '8.1'],
|
|
['core', '2.26'],
|
|
],
|
|
'permissions' => null,
|
|
'type' => 'plugin',
|
|
'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',
|
|
]
|
|
);
|