arlequin/_define.php

33 lines
970 B
PHP
Raw Normal View History

2022-12-14 22:35:40 +00:00
<?php
/**
* @brief arlequin, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Oleksandr Syenchuk, Pierre Van Glabeke and contributors
*
2023-04-10 21:31:14 +00:00
* @copyright Jean-Christian Denis
2022-12-14 22:35:40 +00:00
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return;
}
2015-04-22 13:29:49 +00:00
$this->registerModule(
2021-09-17 20:44:21 +00:00
'Arlequin',
'Allows visitors choose a theme',
2022-12-14 22:35:40 +00:00
'Oleksandr Syenchuk, Pierre Van Glabeke and contributors',
2023-04-12 08:36:12 +00:00
'2.0.1',
2021-09-17 20:44:21 +00:00
[
2023-04-10 21:31:14 +00:00
'requires' => [['core', '2.26']],
2022-12-14 22:35:40 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_CONTENT_ADMIN,
]),
'type' => 'plugin',
'support' => 'http://forum.dotclear.org/viewtopic.php?id=48345',
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
2021-09-17 20:44:21 +00:00
]
);