2021-08-26 22:38:34 +00:00
|
|
|
<?php
|
2021-09-27 22:46:41 +00:00
|
|
|
/**
|
|
|
|
* @brief tweakStores, a plugin for Dotclear 2
|
2021-11-04 23:43:37 +00:00
|
|
|
*
|
2021-09-27 22:46:41 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-04 23:43:37 +00:00
|
|
|
*
|
2021-09-27 22:46:41 +00:00
|
|
|
* @author Jean-Christian Denis and Contributors
|
2021-11-04 23:43:37 +00:00
|
|
|
*
|
2021-09-27 22:46:41 +00:00
|
|
|
* @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',
|
2023-03-19 20:18:18 +00:00
|
|
|
'0.7',
|
2021-08-26 22:38:34 +00:00
|
|
|
[
|
2023-03-19 20:18:18 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2021-08-26 22:38:34 +00:00
|
|
|
'permissions' => null,
|
2021-09-27 22:46:41 +00:00
|
|
|
'type' => 'plugin',
|
2023-01-06 08:34:37 +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/',
|
2021-08-26 22:38:34 +00:00
|
|
|
]
|
2021-11-04 23:43:37 +00:00
|
|
|
);
|