2022-11-27 12:57:51 +00:00
|
|
|
<?php
|
2022-11-27 13:51:46 +00:00
|
|
|
/**
|
2023-10-15 10:07:19 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin alias definition
|
|
|
|
* @ingroup alias
|
2022-11-27 13:51:46 +00:00
|
|
|
*
|
2023-10-15 10:07:19 +00:00
|
|
|
* @defgroup alias Plugin alias.
|
2022-11-27 13:51:46 +00:00
|
|
|
*
|
2023-10-15 10:07:19 +00:00
|
|
|
* Create aliases of your blog's URLs.
|
2022-11-27 13:51:46 +00:00
|
|
|
*
|
2023-10-15 10:07:19 +00:00
|
|
|
* @author Olivier Meunier (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-11-27 13:51:46 +00:00
|
|
|
*/
|
2023-10-15 10:07:19 +00:00
|
|
|
declare(strict_types=1);
|
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-10-24 09:43:11 +00:00
|
|
|
'1.11',
|
2022-11-27 13:51:46 +00:00
|
|
|
[
|
2023-10-15 10:07:19 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'type' => 'plugin',
|
|
|
|
'priority' => 2,
|
|
|
|
'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-11-27 13:51:46 +00:00
|
|
|
]
|
2022-11-27 12:57:51 +00:00
|
|
|
);
|