improve/_define.php

31 lines
800 B
PHP
Raw Normal View History

2021-09-01 23:35:23 +00:00
<?php
/**
* @brief improve, a plugin for Dotclear 2
*
* @package Dotclear
2021-09-06 21:36:50 +00:00
* @subpackage Plugin
2021-09-01 23:35:23 +00:00
*
* @author Jean-Christian Denis 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(
'improve',
'Tiny tools to fix things for module devs',
'Jean-Christian Denis and contributors',
2021-10-29 21:16:49 +00:00
'0.3',
2021-09-01 23:35:23 +00:00
[
2021-10-29 21:14:09 +00:00
'requires' => [['core', '2.19']],
2021-09-01 23:35:23 +00:00
'permissions' => null,
2021-10-29 21:14:09 +00:00
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/improve',
'details' => 'https://github.com/JcDenis/improve',
'repository' => 'https://raw.githubusercontent.com/JcDenis/improve/master/dcstore.xml'
2021-09-01 23:35:23 +00:00
]
);