emailOptionnel/_define.php

32 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
/**
2023-10-16 20:25:52 +00:00
* @file
* @brief The plugin emailOptionnel definition
* @ingroup emailOptionnel
2022-12-15 22:19:01 +00:00
*
2023-10-16 20:25:52 +00:00
* @defgroup emailOptionnel Plugin emailOptionnel.
2022-12-15 22:19:01 +00:00
*
2023-10-16 20:25:52 +00:00
* Make e-mail address optional in comments.
2022-12-15 22:19:01 +00:00
*
2023-10-16 20:25:52 +00:00
* @author Oleksandr Syenchuk (author)
* @author Jean-Christian Denis (latest)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2022-12-15 22:19:01 +00:00
*/
2023-10-16 20:25:52 +00:00
declare(strict_types=1);
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-10-16 20:25:52 +00:00
'1.5',
2022-12-15 22:19:01 +00:00
[
2023-10-16 20:25:52 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
'settings' => ['blog' => '#params.' . basename(__DIR__) . 'Param'],
'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-15 22:19:01 +00:00
]
2021-11-10 23:20:02 +00:00
);