2021-08-25 23:37:09 +00:00
|
|
|
<?php
|
|
|
|
# -- BEGIN LICENSE BLOCK ----------------------------------
|
2021-08-27 23:53:13 +00:00
|
|
|
#
|
2021-08-25 23:37:09 +00:00
|
|
|
# This file is part of kUtRL, a plugin for Dotclear 2.
|
|
|
|
#
|
2021-08-27 23:53:13 +00:00
|
|
|
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors
|
2021-08-25 23:37:09 +00:00
|
|
|
#
|
|
|
|
# Licensed under the GPL version 2.0 license.
|
|
|
|
# A copy of this license is available in LICENSE file or at
|
|
|
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
2021-08-27 23:53:13 +00:00
|
|
|
#
|
2021-08-25 23:37:09 +00:00
|
|
|
# -- END LICENSE BLOCK ------------------------------------
|
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
|
|
|
'kUtRL',
|
|
|
|
'Use, create and serve short url on your blog',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2021-08-28 18:39:58 +00:00
|
|
|
'2021.08.28',
|
2021-08-25 23:37:09 +00:00
|
|
|
[
|
2021-09-02 12:30:05 +00:00
|
|
|
'requires' => [['core', '2.19']],
|
2021-08-25 23:37:09 +00:00
|
|
|
'permissions' => 'admin',
|
|
|
|
'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
|
|
|
]
|
|
|
|
);
|