myUrlHandlers/_define.php

33 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
/**
2023-10-10 21:37:45 +00:00
* @file
* @brief The plugin myUrlHandlers definition
* @ingroup myUrlHandlers
2022-11-26 22:43:34 +00:00
*
2023-10-10 21:37:45 +00:00
* @defgroup myUrlHandlers Plugin myUrlHandlers.
2022-11-26 22:43:34 +00:00
*
2023-10-10 21:37:45 +00:00
* Change Dotclear URL handlers.
2022-11-26 22:43:34 +00:00
*
2023-10-10 21:37:45 +00:00
* @author Alex Pirine and contributors
* @author Jean-Christian Denis
* @copyright Alex Pirine
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2022-11-26 22:43:34 +00:00
*/
2023-10-10 21:37:45 +00:00
declare(strict_types=1);
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-10-10 21:37:45 +00:00
'2023.10.11',
2022-08-15 10:52:22 +00:00
[
2023-10-07 21:59:48 +00:00
'requires' => [['core', '2.28']],
2023-10-10 21:37:45 +00:00
'permissions' => 'My',
'priority' => 150000,
'type' => 'plugin',
'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
]
);