2022-11-27 22:30:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2023-10-13 19:06:43 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin testMail definition
|
|
|
|
* @ingroup testMail
|
2022-11-27 22:30:13 +00:00
|
|
|
*
|
2023-10-13 19:06:43 +00:00
|
|
|
* @defgroup testMail Plugin testMail.
|
2022-11-27 22:30:13 +00:00
|
|
|
*
|
2023-10-13 19:06:43 +00:00
|
|
|
* Send a simple mail from admin.
|
2022-11-27 22:30:13 +00:00
|
|
|
*
|
2023-10-13 19:06:43 +00:00
|
|
|
* @author Osku (author)
|
|
|
|
* @author Jean-Christian Denis (author)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-11-27 22:30:13 +00:00
|
|
|
*/
|
2023-01-05 23:48:09 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-11-27 22:30:13 +00:00
|
|
|
$this->registerModule(
|
|
|
|
'Mail test',
|
|
|
|
'Send a simple mail from admin',
|
|
|
|
'Osku and contributors',
|
2023-10-13 19:06:43 +00:00
|
|
|
'0.7',
|
2022-11-27 22:30:13 +00:00
|
|
|
[
|
2023-10-07 21:07:10 +00:00
|
|
|
'requires' => [['core', '2.28']],
|
2023-10-13 19:06:43 +00:00
|
|
|
'permissions' => 'My',
|
2022-11-27 22:30:13 +00:00
|
|
|
'type' => 'plugin',
|
2023-08-13 19:47:15 +00:00
|
|
|
'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-11-27 22:30:13 +00:00
|
|
|
]
|
|
|
|
);
|