2021-08-25 23:37:09 +00:00
|
|
|
<?php
|
2021-09-02 12:32:26 +00:00
|
|
|
/**
|
2023-10-19 18:32:57 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin kUtRL definition
|
|
|
|
* @ingroup kUtRL
|
2021-11-06 15:43:02 +00:00
|
|
|
*
|
2023-10-19 18:32:57 +00:00
|
|
|
* @defgroup kUtRL Plugin kUtRL.
|
2021-11-06 15:43:02 +00:00
|
|
|
*
|
2023-10-19 18:32:57 +00:00
|
|
|
* Use, create and serve short url on your blog.
|
2021-11-06 15:43:02 +00:00
|
|
|
*
|
2023-10-19 18:32:57 +00:00
|
|
|
* @author Jean-Christian Denis (author)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-02 12:32:26 +00:00
|
|
|
*/
|
2023-10-19 18:32:57 +00:00
|
|
|
declare(strict_types=1);
|
2021-08-25 23:37:09 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2021-10-26 21:18:12 +00:00
|
|
|
'Links shortener',
|
2021-08-25 23:37:09 +00:00
|
|
|
'Use, create and serve short url on your blog',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2023-10-19 18:32:57 +00:00
|
|
|
'2023.10.19',
|
2021-08-25 23:37:09 +00:00
|
|
|
[
|
2023-10-19 18:32:57 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'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',
|
2021-08-25 23:37:09 +00:00
|
|
|
]
|
2021-11-06 15:43:02 +00:00
|
|
|
);
|