38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @brief kUtRL, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugin
|
|
*
|
|
* @author Jean-Christian Denis and contributors
|
|
*
|
|
* @copyright Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
if (!defined('DC_RC_PATH')) {
|
|
return null;
|
|
}
|
|
|
|
$this->registerModule(
|
|
'Links shortener',
|
|
'Use, create and serve short url on your blog',
|
|
'Jean-Christian Denis and contributors',
|
|
'2023.08.21',
|
|
[
|
|
'requires' => [
|
|
['core', '2.27'],
|
|
['php', '8.1'],
|
|
],
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
dcAuth::PERMISSION_USAGE,
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
dcAuth::PERMISSION_ADMIN,
|
|
]),
|
|
'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',
|
|
]
|
|
);
|