2021-08-25 23:37:09 +00:00
|
|
|
<?php
|
2021-09-02 12:32:26 +00:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2021-08-25 23:37:09 +00:00
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2021-09-16 21:52:13 +00:00
|
|
|
'URL shortener',
|
2021-08-25 23:37:09 +00:00
|
|
|
'Use, create and serve short url on your blog',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2021-09-16 21:53:10 +00:00
|
|
|
'2021.09.16',
|
2021-08-25 23:37:09 +00:00
|
|
|
[
|
2021-09-02 12:30:05 +00:00
|
|
|
'requires' => [['core', '2.19']],
|
2021-09-16 21:40:10 +00:00
|
|
|
'permissions' => '-',
|
2021-08-25 23:37:09 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/kUtRL',
|
|
|
|
'details' => 'http://plugins.dotaddict.org/dc2/details/kUtRL',
|
2021-08-27 20:52:24 +00:00
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/kUtRL/master/dcstore.xml'
|
2021-08-25 23:37:09 +00:00
|
|
|
]
|
|
|
|
);
|