arlequin/_define.php

33 lines
968 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
*
* @copyright Jean-Crhistian Denis
* @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',
'1.6',
2021-09-17 20:44:21 +00:00
[
2022-12-14 22:35:40 +00:00
'requires' => [['core', '2.24']],
'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
]
);