kUtRL/_define.php

38 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* @brief kUtRL, a plugin for Dotclear 2
2021-11-06 15:43:02 +00:00
*
* @package Dotclear
* @subpackage Plugin
2021-11-06 15:43:02 +00:00
*
* @author Jean-Christian Denis and contributors
2021-11-06 15:43:02 +00:00
*
* @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(
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-08-21 15:08:34 +00:00
'2023.08.21',
[
2023-08-21 14:55:48 +00:00
'requires' => [
['core', '2.27'],
['php', '8.1'],
],
2022-11-20 16:15:36 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_USAGE,
dcAuth::PERMISSION_CONTENT_ADMIN,
dcAuth::PERMISSION_ADMIN,
]),
2023-08-21 14:55:48 +00:00
'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
);