myUrlHandlers/_define.php

32 lines
882 B
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
*/
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',
'2022.11.26',
2022-08-15 10:52:22 +00:00
[
2022-11-26 22:43:34 +00:00
'requires' => [['core', '2.24']],
'permissions' => dcAuth::PERMISSION_CONTENT_ADMIN,
2022-08-15 10:52:22 +00:00
'priority' => 150000,
'type' => 'plugin',
2022-11-28 22:02:18 +00:00
'support' => 'https://github.com/JcDenis/myUrlHandlers',
2022-11-26 22:43:34 +00:00
'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
]
);