tweakStores/_define.php

31 lines
825 B
PHP
Raw Normal View History

2021-08-26 22:38:34 +00:00
<?php
2021-09-27 22:46:41 +00:00
/**
* @brief tweakStores, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and Contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-26 22:38:34 +00:00
if (!defined('DC_RC_PATH')) {
return null;
}
$this->registerModule(
'Tweak stores',
'Helper to manage external repositories',
'Jean-Christian Denis and Contributors',
2021-08-27 13:45:52 +00:00
'0.1.0',
2021-08-26 22:38:34 +00:00
[
2021-09-27 22:46:41 +00:00
'requires' => [['core', '2.19']],
2021-08-26 22:38:34 +00:00
'permissions' => null,
2021-09-27 22:46:41 +00:00
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/tweakStores',
'details' => 'https://plugins.dotaddict.org/dc2/details/tweakStores',
'repository' => 'https://raw.githubusercontent.com/JcDenis/tweakStores/master/'
2021-08-26 22:38:34 +00:00
]
);