alias/_define.php

34 lines
940 B
PHP
Raw Normal View History

2022-11-27 12:57:51 +00:00
<?php
2022-11-27 13:51:46 +00:00
/**
* @brief alias, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Olivier Meunier and contributors
*
2022-11-28 21:52:27 +00:00
* @copyright Jean-Christian Denis
2022-11-27 13:51:46 +00:00
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-04-30 23:15:19 +00:00
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
2022-11-27 13:51:46 +00:00
return null;
}
2022-11-27 12:57:51 +00:00
$this->registerModule(
2022-11-27 13:51:46 +00:00
'alias',
"Create aliases of your blog's URLs",
'Olivier Meunier and contributors',
2023-06-16 19:33:48 +00:00
'1.7.1',
2022-11-27 13:51:46 +00:00
[
2023-04-08 19:39:52 +00:00
'requires' => [['core', '2.26']],
2022-11-30 21:51:07 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
2023-04-08 19:39:52 +00:00
dcCore::app()->auth::PERMISSION_ADMIN,
2022-11-30 21:51:07 +00:00
]),
2023-04-08 19:39:52 +00:00
'type' => 'plugin',
2023-04-30 23:15:19 +00:00
'priority' => 2,
2023-04-08 19:39:52 +00:00
'support' => 'https://github.com/JcDenis/alias',
'details' => 'https://plugins.dotaddict.org/dc2/details/alias',
'repository' => 'https://raw.githubusercontent.com/JcDenis/alias/master/dcstore.xml',
2022-11-27 13:51:46 +00:00
]
2022-11-27 12:57:51 +00:00
);