kUtRL/_define.php

30 lines
940 B
PHP
Raw Permalink Normal View History

<?php
/**
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
*/
2023-10-19 18:32:57 +00:00
declare(strict_types=1);
$this->registerModule(
2021-10-26 21:18:12 +00:00
'Links shortener',
'Use, create and serve short url on your blog',
'Jean-Christian Denis and contributors',
2023-11-04 17:54:40 +00:00
'2023.11.04',
[
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-11-06 15:43:02 +00:00
);