2021-09-07 12:33:18 +00:00
|
|
|
<?php
|
2021-09-07 13:04:27 +00:00
|
|
|
/**
|
2023-10-15 18:49:39 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin cinecturlink2 definition
|
|
|
|
* @ingroup cinecturlink2
|
2021-11-02 22:55:41 +00:00
|
|
|
*
|
2023-10-15 18:49:39 +00:00
|
|
|
* @defgroup cinecturlink2 Plugin cinecturlink2.
|
2021-11-02 22:55:41 +00:00
|
|
|
*
|
2023-10-15 18:49:39 +00:00
|
|
|
* Widgets and pages about books, musics, films, blogs you are interested in
|
2021-11-02 22:55:41 +00:00
|
|
|
*
|
2021-09-07 12:33:18 +00:00
|
|
|
* Taken from cinecturlink for Dotclear 1
|
|
|
|
* By Tigroux and Brol
|
|
|
|
* Under GNU GPL 2.0 license
|
2023-10-15 18:49:39 +00:00
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis (author)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-07 12:33:18 +00:00
|
|
|
*/
|
2023-10-15 18:49:39 +00:00
|
|
|
declare(strict_types=1);
|
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',
|
2023-11-04 10:09:01 +00:00
|
|
|
'2.3.1',
|
2021-09-07 13:04:27 +00:00
|
|
|
[
|
2023-10-15 18:49:39 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'settings' => ['blog' => '#params.' . basename(__DIR__) . '_params'],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'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-09-07 13:04:27 +00:00
|
|
|
]
|
2021-11-02 22:55:41 +00:00
|
|
|
);
|