kUtRL/_define.php

31 lines
844 B
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',
2021-11-06 15:45:11 +00:00
'2021.11.06',
[
2021-11-06 15:45:11 +00:00
'requires' => [['core', '2.20']],
2021-09-17 20:53:31 +00:00
'permissions' => 'usage,contentadmin,admin',
2021-10-26 21:03:38 +00:00
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/kUtRL',
'details' => 'http://plugins.dotaddict.org/dc2/details/kUtRL',
'repository' => 'https://raw.githubusercontent.com/JcDenis/kUtRL/master/dcstore.xml'
]
2021-11-06 15:43:02 +00:00
);