2015-04-22 15:25:24 +00:00
|
|
|
<?php
|
2022-12-21 00:40:42 +00:00
|
|
|
/**
|
|
|
|
* @brief disclaimer, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis, Pierre Van Glabeke
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2023-04-25 19:30:44 +00:00
|
|
|
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
|
2022-12-21 00:40:42 +00:00
|
|
|
return null;
|
2015-04-22 15:25:24 +00:00
|
|
|
}
|
2022-12-21 00:40:42 +00:00
|
|
|
|
2015-04-22 15:25:24 +00:00
|
|
|
$this->registerModule(
|
2023-04-10 08:14:52 +00:00
|
|
|
'Disclaimer',
|
2022-12-21 00:40:42 +00:00
|
|
|
'Add a disclaimer to your blog entrance',
|
|
|
|
'Jean-Christian Denis, Pierre Van Glabeke',
|
2023-05-13 08:28:08 +00:00
|
|
|
'1.3',
|
2022-12-21 00:40:42 +00:00
|
|
|
[
|
2023-04-10 08:17:28 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2022-12-21 00:40:42 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
2023-04-25 19:30:44 +00:00
|
|
|
dcCore::app()->auth::PERMISSION_ADMIN,
|
2022-12-21 00:40:42 +00:00
|
|
|
]),
|
2023-04-10 08:14:52 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'http://forum.dotclear.org/viewtopic.php?id=40000',
|
|
|
|
'details' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
|
|
|
'settings' => [
|
2022-12-21 10:16:30 +00:00
|
|
|
'blog' => '#params.disclaimerParam',
|
|
|
|
],
|
2022-12-21 00:40:42 +00:00
|
|
|
]
|
|
|
|
);
|