2022-08-15 10:52:22 +00:00
|
|
|
<?php
|
2022-11-26 22:43:34 +00:00
|
|
|
/**
|
|
|
|
* @brief myUrlHandlers, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Alex Pirine and contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-08-15 10:52:22 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2022-11-26 22:43:34 +00:00
|
|
|
'My URL handlers',
|
|
|
|
'Change Dotclear URL handlers',
|
|
|
|
'Alex Pirine and contributors',
|
2023-03-11 11:16:12 +00:00
|
|
|
'2023.03.11',
|
2022-08-15 10:52:22 +00:00
|
|
|
[
|
2023-03-11 14:58:36 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2022-12-02 00:04:39 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
|
|
]),
|
2023-03-11 11:16:12 +00:00
|
|
|
'priority' => 150000,
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/myUrlHandlers',
|
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/myUrlHandlers',
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/myUrlHandlers/master/dcstore.xml',
|
2022-08-15 10:52:22 +00:00
|
|
|
]
|
|
|
|
);
|