2021-09-10 19:06:49 +00:00
|
|
|
<?php
|
2021-09-10 19:18:51 +00:00
|
|
|
/**
|
|
|
|
* @brief postWidgetText, a plugin for Dotclear 2
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2021-09-10 19:18:51 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2021-09-10 19:18:51 +00:00
|
|
|
* @author Jean-Christian Denis and Contributors
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2021-09-10 19:18:51 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2023-08-15 18:30:05 +00:00
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-09-10 19:17:09 +00:00
|
|
|
return null;
|
2021-09-10 19:06:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2021-09-10 19:17:09 +00:00
|
|
|
'Post widget text',
|
|
|
|
'Add a widget with a text related to an entry',
|
|
|
|
'Jean-Christian Denis and Contributors',
|
2023-08-15 18:30:05 +00:00
|
|
|
'2023.08.15',
|
2021-09-10 19:17:09 +00:00
|
|
|
[
|
2023-05-13 13:21:28 +00:00
|
|
|
'requires' => [
|
2023-05-10 09:00:38 +00:00
|
|
|
['php', '8.0'],
|
2023-08-15 18:30:05 +00:00
|
|
|
['core', '2.27'],
|
2023-05-10 09:00:38 +00:00
|
|
|
],
|
2022-11-15 21:05:23 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
2023-04-24 21:22:12 +00:00
|
|
|
dcCore::app()->auth::PERMISSION_USAGE,
|
|
|
|
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
|
2022-11-15 21:05:23 +00:00
|
|
|
]),
|
2023-08-15 18:30:05 +00:00
|
|
|
'settings' => [
|
2022-11-15 21:07:37 +00:00
|
|
|
'blog' => '#params.pwt_params',
|
|
|
|
],
|
2023-08-15 18:30:05 +00:00
|
|
|
'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-10 19:17:09 +00:00
|
|
|
]
|
2021-11-06 15:11:19 +00:00
|
|
|
);
|