postWidgetText/_define.php

34 lines
959 B
PHP
Raw Normal View History

2021-09-10 19:06:49 +00:00
<?php
2021-09-10 19:18:51 +00:00
/**
* @brief postWidgetText, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and Contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-09-10 19:06:49 +00:00
2021-09-10 19:17:09 +00:00
if (!defined('DC_RC_PATH')) {
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',
'2021.00.00.1',
[
2021-10-29 23:12:43 +00:00
'requires' => [['core', '2.19']],
2021-09-10 19:17:09 +00:00
'permissions' => 'usage,contentadmin',
2021-10-29 23:12:43 +00:00
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/postWidgetText',
'details' => 'https://plugins.dotaddict.org/dc2/details/postWidgetText',
2021-10-30 08:02:04 +00:00
'repository' => 'https://raw.githubusercontent.com/JcDenis/postWidgetText/master/dcstore.xml',
'settings' => [
'blog' => '#params.pwt_params'
]
2021-09-10 19:17:09 +00:00
]
);