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-10-07 21:59:48 +00:00
|
|
|
use Dotclear\App;
|
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-10-07 21:59:48 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => App::auth()->makePermissions([
|
|
|
|
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
|
|
|
]
|
|
|
|
);
|