2021-08-23 23:55:52 +00:00
|
|
|
<?php
|
2021-09-02 18:35:25 +00:00
|
|
|
/**
|
2023-10-11 19:02:43 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin enhancePostContent definition
|
|
|
|
* @ingroup enhancePostContent
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2023-10-11 19:02:43 +00:00
|
|
|
* @defgroup enhancePostContent Plugin enhancePostContent.
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2023-10-11 19:02:43 +00:00
|
|
|
* Add features to words in post content.
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2023-10-11 19:02:43 +00:00
|
|
|
* @author Jean-Christian Denis
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-02 18:35:25 +00:00
|
|
|
*/
|
2021-08-23 23:55:52 +00:00
|
|
|
$this->registerModule(
|
2021-08-24 20:05:23 +00:00
|
|
|
'Enhance post content',
|
|
|
|
'Add features to words in post content',
|
|
|
|
'Jean-Christian Denis and Contributors',
|
2023-10-11 19:02:43 +00:00
|
|
|
'2023.10.11',
|
2021-08-24 20:05:23 +00:00
|
|
|
[
|
2023-10-11 19:02:43 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'settings' => [
|
|
|
|
'self' => '',
|
2022-11-13 20:30:48 +00:00
|
|
|
'blog' => '#params.epc_params',
|
|
|
|
],
|
2023-08-14 22:17:33 +00:00
|
|
|
'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-08-24 20:05:23 +00:00
|
|
|
]
|
2021-11-01 09:33:43 +00:00
|
|
|
);
|