arlequin/_define.php

33 lines
1013 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
*/
2023-04-26 19:47:39 +00:00
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
2022-12-14 22:35:40 +00:00
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-05-13 08:00:53 +00:00
'2.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([
2023-04-26 19:47:39 +00:00
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
2022-12-14 22:35:40 +00:00
]),
'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
]
);