tweakStores/_define.php

31 lines
821 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
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',
2022-11-14 22:52:56 +00:00
'0.5',
2021-08-26 22:38:34 +00:00
[
2022-11-14 22:52:56 +00:00
'requires' => [['core', '2.24']],
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',
2022-11-14 22:52:56 +00:00
'repository' => 'https://raw.githubusercontent.com/JcDenis/tweakStores/master/',
2021-08-26 22:38:34 +00:00
]
2021-11-04 23:43:37 +00:00
);