2022-12-05 21:39:13 +00:00
|
|
|
<?php
|
2022-12-07 20:58:18 +00:00
|
|
|
/**
|
|
|
|
* @brief templator, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Osku and contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2022-12-05 21:42:34 +00:00
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-12-05 21:39:13 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2022-12-07 20:58:18 +00:00
|
|
|
'Templates engine',
|
2022-12-05 21:42:34 +00:00
|
|
|
'Create and select more templates for your posts',
|
|
|
|
'Osku and contributors',
|
2022-12-07 21:00:03 +00:00
|
|
|
'1.4',
|
2022-12-05 21:42:34 +00:00
|
|
|
[
|
|
|
|
'requires' => [['core', '2.24']],
|
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_CONTENT_ADMIN,
|
|
|
|
initTemplator::PERMISSION_TEMPLATOR,
|
|
|
|
]),
|
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/templator',
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/templator',
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/templator/master/dcstore.xml',
|
|
|
|
]
|
2022-12-05 21:39:13 +00:00
|
|
|
);
|