2021-09-10 19:06:49 +00:00
|
|
|
<?php
|
2021-09-10 19:18:51 +00:00
|
|
|
/**
|
2023-10-20 18:35:41 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin postWidgetText definition
|
|
|
|
* @ingroup postWidgetText
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2023-10-20 18:35:41 +00:00
|
|
|
* @defgroup postWidgetText Plugin postWidgetText.
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2023-10-20 18:35:41 +00:00
|
|
|
* Add a widget with a text related to an entry.
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2023-10-20 18:35:41 +00:00
|
|
|
* @author Tomtom (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-10 19:18:51 +00:00
|
|
|
*/
|
2023-10-20 18:35:41 +00:00
|
|
|
declare(strict_types=1);
|
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-10-20 18:35:41 +00:00
|
|
|
'2023.10.20',
|
2021-09-10 19:17:09 +00:00
|
|
|
[
|
2023-10-20 18:35:41 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'settings' => ['blog' => '#params.pwt_params'],
|
|
|
|
'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
|
|
|
);
|