emailOptionnel/_define.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2015-04-22 16:34:32 +00:00
<?php
2022-12-15 22:19:01 +00:00
/**
* @brief emailOptionnel, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Oleksandr Syenchuk, Pierre Van Glabeke, Gvx and Contributors
*
2023-03-26 20:27:43 +00:00
* @copyright Jean-Christian Denis
2022-12-15 22:19:01 +00:00
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
2015-04-22 16:34:32 +00:00
$this->registerModule(
2022-12-15 22:19:01 +00:00
'emailOptionnel',
'Make e-mail address optional in comments',
'Oleksandr Syenchuk, Pierre Van Glabeke, Gvx and Contributors',
2023-03-26 20:27:43 +00:00
'1.1',
2022-12-15 22:19:01 +00:00
[
2023-03-26 20:27:43 +00:00
'requires' => [['core', '2.26']],
2022-12-15 22:19:01 +00:00
'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_ADMIN,
]),
'type' => 'plugin',
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=332948#p332948',
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
'settings' => [
'blog' => '#params.emailOptionnelParam',
],
]
2021-11-10 23:20:02 +00:00
);