2022-11-27 00:56:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @brief mail2log, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis and contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
2022-12-22 22:14:48 +00:00
|
|
|
'mail2log',
|
2022-11-27 00:56:22 +00:00
|
|
|
'Do not send mails but log them',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2022-12-22 22:10:55 +00:00
|
|
|
'0.2',
|
2022-11-27 00:56:22 +00:00
|
|
|
[
|
|
|
|
'requires' => [['core', '2.24']],
|
2022-12-03 20:34:22 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_USAGE,
|
|
|
|
]),
|
2022-12-22 22:06:46 +00:00
|
|
|
'type' => 'plugin',
|
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
2022-11-27 00:56:22 +00:00
|
|
|
]
|
|
|
|
);
|