dcLog/_define.php

31 lines
819 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-04-29 20:14:18 +00:00
'1.3.1',
[
2023-03-11 14:53:06 +00:00
'requires' => [['core', '2.26']],
'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 14:38:40 +00:00
);