cleanURLs/_define.php

31 lines
980 B
PHP
Raw Normal View History

2023-01-11 20:00:01 +00:00
<?php
/**
2023-10-15 19:06:31 +00:00
* @file
* @brief The plugin cleanURLs definition
* @ingroup cleanURLs
2023-01-11 20:16:35 +00:00
*
2023-10-15 19:06:31 +00:00
* @defgroup cleanURLs Plugin cleanURLs.
2023-01-11 20:16:35 +00:00
*
2023-10-15 19:06:31 +00:00
* Removes diacritics and punctuation from URLs.
2023-01-11 20:16:35 +00:00
*
2023-10-15 19:06:31 +00:00
* @author Pierre Rudloff (author)
* @author Jean-Christian Denis (latest)
* @copyright GPL-3.0 https://www.gnu.org/licenses/gpl-3.0.html
2023-01-11 20:16:35 +00:00
*/
2023-10-15 19:06:31 +00:00
declare(strict_types=1);
2023-10-07 20:18:57 +00:00
2023-01-11 20:00:01 +00:00
$this->registerModule(
2023-01-11 20:05:12 +00:00
'Clean URLs',
'Removes diacritics and punctuation from URLs',
'Pierre Rudloff and contributors',
2023-10-15 19:06:31 +00:00
'1.6.1',
2023-01-11 20:05:12 +00:00
[
2023-10-07 20:18:57 +00:00
'requires' => [['core', '2.28']],
2023-10-15 19:06:31 +00:00
'permissions' => 'My',
'type' => 'plugin',
'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',
2023-01-11 20:05:12 +00:00
]
2023-01-11 20:16:35 +00:00
);