alias/_define.php

33 lines
872 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',
2022-12-20 20:10:10 +00:00
'1.4.1',
2022-11-27 13:51:46 +00:00
[
'requires' => [['core', '2.24']],
2022-11-30 21:51:07 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_ADMIN,
]),
2022-12-20 20:10:10 +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
);