myUrlHandlers/_define.php

34 lines
1.0 KiB
PHP
Raw Normal View History

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
*/
2023-07-29 08:51:09 +00:00
if (!defined('DC_RC_PATH')) {
2022-11-26 22:43:34 +00:00
return null;
}
2022-08-15 10:52:22 +00:00
$this->registerModule(
2023-03-27 21:50:30 +00:00
'URL handlers',
2022-11-26 22:43:34 +00:00
'Change Dotclear URL handlers',
'Alex Pirine and contributors',
2023-08-13 15:59:08 +00:00
'2023.08.13',
2022-08-15 10:52:22 +00:00
[
2023-07-29 08:51:09 +00:00
'requires' => [['core', '2.27']],
2022-12-02 00:04:39 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
2023-05-13 13:05:50 +00:00
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
2022-12-02 00:04:39 +00:00
]),
2023-03-11 11:16:12 +00:00
'priority' => 150000,
'type' => 'plugin',
2023-08-13 15:59:08 +00:00
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
2022-08-15 10:52:22 +00:00
]
);