2021-09-07 12:33:18 +00:00
|
|
|
<?php
|
2021-09-07 13:04:27 +00:00
|
|
|
/**
|
|
|
|
* @brief cinecturlink2, a plugin for Dotclear 2
|
2021-11-02 22:55:41 +00:00
|
|
|
*
|
2021-09-07 13:04:27 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-02 22:55:41 +00:00
|
|
|
*
|
2021-09-07 13:04:27 +00:00
|
|
|
* @author Jean-Christian Denis and Contributors
|
2021-11-02 22:55:41 +00:00
|
|
|
*
|
2021-09-07 13:04:27 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-09-07 12:33:18 +00:00
|
|
|
/*
|
|
|
|
* Taken from cinecturlink for Dotclear 1
|
|
|
|
* By Tigroux and Brol
|
|
|
|
* Under GNU GPL 2.0 license
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-09-07 13:04:27 +00:00
|
|
|
return null;
|
2021-09-07 12:33:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2021-09-07 13:04:27 +00:00
|
|
|
'Cinecturlink 2',
|
|
|
|
'Widgets and pages about books, musics, films, blogs you are interested in',
|
|
|
|
'Jean-Christian Denis and Contributors',
|
2021-09-10 22:52:52 +00:00
|
|
|
'0.9.1',
|
2021-09-07 13:04:27 +00:00
|
|
|
[
|
2021-11-02 22:55:41 +00:00
|
|
|
'requires' => [['core', '2.19']],
|
2021-09-07 13:04:27 +00:00
|
|
|
'permissions' => 'contentadmin',
|
2021-11-02 22:55:41 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/cinecturlink2',
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/cinecturlink2',
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/cinecturlink2/master/dcstore.xml'
|
2021-09-07 13:04:27 +00:00
|
|
|
]
|
2021-11-02 22:55:41 +00:00
|
|
|
);
|