2022-12-07 22:01:33 +00:00
|
|
|
<?php
|
2022-12-07 22:14:55 +00:00
|
|
|
/**
|
2023-10-16 20:03:02 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin emailNotification definition
|
|
|
|
* @ingroup emailNotification
|
2022-12-07 22:14:55 +00:00
|
|
|
*
|
2023-10-16 20:03:02 +00:00
|
|
|
* @defgroup emailNotification Plugin emailNotification.
|
2022-12-07 22:14:55 +00:00
|
|
|
*
|
2023-10-16 20:03:02 +00:00
|
|
|
* Email notification.
|
2022-12-07 22:14:55 +00:00
|
|
|
*
|
2023-10-16 20:03:02 +00:00
|
|
|
* @author Olivier Meunier (author)
|
|
|
|
* @author Jean-Christian Denis (latest)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2022-12-07 22:14:55 +00:00
|
|
|
*/
|
2023-10-16 20:03:02 +00:00
|
|
|
declare(strict_types=1);
|
2022-12-07 22:01:33 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2022-12-07 22:14:55 +00:00
|
|
|
'Email notification',
|
|
|
|
'Email notification',
|
|
|
|
'Olivier Meunier and contributors',
|
2023-12-24 10:46:51 +00:00
|
|
|
'1.8',
|
2022-12-07 22:14:55 +00:00
|
|
|
[
|
2023-10-16 20:03:02 +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-07 22:14:55 +00:00
|
|
|
]
|
2022-12-07 22:01:33 +00:00
|
|
|
);
|