2021-08-23 23:55:52 +00:00
|
|
|
<?php
|
2021-09-02 18:35:25 +00:00
|
|
|
/**
|
|
|
|
* @brief enhancePostContent, a plugin for Dotclear 2
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2021-09-02 18:35:25 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2021-09-02 18:35:25 +00:00
|
|
|
* @author Jean-Christian Denis and Contributors
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2021-09-02 18:35:25 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-23 23:55:52 +00:00
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-08-24 20:05:23 +00:00
|
|
|
return null;
|
2021-08-23 23:55:52 +00:00
|
|
|
}
|
2021-08-24 20:05:23 +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-04-09 21:56:44 +00:00
|
|
|
'2023.04.09',
|
2021-08-24 20:05:23 +00:00
|
|
|
[
|
2023-04-09 21:56:44 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2022-11-30 23:40:16 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
|
|
]),
|
2023-04-09 21:56:44 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
|
|
|
'settings' => [
|
2022-11-13 20:30:48 +00:00
|
|
|
'blog' => '#params.epc_params',
|
|
|
|
],
|
2021-08-24 20:05:23 +00:00
|
|
|
]
|
2021-11-01 09:33:43 +00:00
|
|
|
);
|