alias/_define.php

33 lines
879 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
*/
if (!defined('DC_RC_PATH')) {
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-04-08 19:39:52 +00:00
'1.5',
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',
'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
);