2022-12-05 21:39:13 +00:00
|
|
|
<?php
|
2022-12-07 20:58:18 +00:00
|
|
|
/**
|
2023-10-20 20:33:40 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin templator definition
|
|
|
|
* @ingroup templator
|
2022-12-07 20:58:18 +00:00
|
|
|
*
|
2023-10-20 20:33:40 +00:00
|
|
|
* @defgroup templator Plugin templator.
|
2022-12-07 20:58:18 +00:00
|
|
|
*
|
2023-10-20 20:33:40 +00:00
|
|
|
* Create and select more templates for your posts.
|
2022-12-07 20:58:18 +00:00
|
|
|
*
|
2023-10-20 20:33:40 +00:00
|
|
|
* @author Osku (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-12-07 20:58:18 +00:00
|
|
|
*/
|
2023-10-20 20:33:40 +00:00
|
|
|
declare(strict_types=1);
|
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',
|
2023-10-20 20:33:40 +00:00
|
|
|
'1.7',
|
2022-12-05 21:42:34 +00:00
|
|
|
[
|
2023-10-20 20:33:40 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
|
|
|
'permissions' => 'My',
|
|
|
|
'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',
|
2022-12-05 21:42:34 +00:00
|
|
|
]
|
2022-12-05 21:39:13 +00:00
|
|
|
);
|