mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
Resolved issue 0000763: mail triggers:
Add triggers on mail part: o NBM o Group mail o process send mail + check group_id null on group mail Merge branch-1_7 2138:2139 into BSF git-svn-id: http://piwigo.org/svn/trunk@2140 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -209,6 +209,26 @@ order by
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Apply global functions to mail content
|
||||
* return customize mail content rendered
|
||||
*/
|
||||
function render_global_customize_mail_content($customize_mail_content)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
if ($conf['nbm_send_html_mail'] and !(strpos($customize_mail_content, '<') === 0))
|
||||
{
|
||||
// On HTML mail, detects if the content are HTML format.
|
||||
// If it's plain text format, convert content to readable HTML
|
||||
return nl2br(htmlspecialchars($customize_mail_content));
|
||||
}
|
||||
else
|
||||
{
|
||||
return $customize_mail_content;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Send mail for notification to all users
|
||||
* Return list of "selected" users for 'list_to_send'
|
||||
@@ -243,12 +263,9 @@ function do_action_send_mail_notification($action = 'list_to_send', $check_key_l
|
||||
$customize_mail_content = $conf['nbm_complementary_mail_content'];
|
||||
}
|
||||
|
||||
if ($conf['nbm_send_html_mail'] and !(strpos($customize_mail_content, '<') === 0))
|
||||
{
|
||||
// On HTML mail, detects if the content are HTML format.
|
||||
// If it's plain text format, convert content to readable HTML
|
||||
$customize_mail_content = nl2br(htmlspecialchars($customize_mail_content));
|
||||
}
|
||||
$customize_mail_content =
|
||||
trigger_event('nbm_render_global_customize_mail_content', $customize_mail_content);
|
||||
|
||||
|
||||
// Prepare message after change language
|
||||
if ($is_action_send)
|
||||
@@ -343,11 +360,16 @@ function do_action_send_mail_notification($action = 'list_to_send', $check_key_l
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($customize_mail_content))
|
||||
$nbm_user_customize_mail_content =
|
||||
trigger_event('nbm_render_user_customize_mail_content',
|
||||
$customize_mail_content, $nbm_user);
|
||||
if (!empty($nbm_user_customize_mail_content))
|
||||
{
|
||||
$env_nbm['mail_template']->assign_block_vars
|
||||
(
|
||||
'custom', array('CUSTOMIZE_MAIL_CONTENT' => $customize_mail_content)
|
||||
'custom',
|
||||
array('CUSTOMIZE_MAIL_CONTENT' =>
|
||||
$nbm_user_customize_mail_content)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -481,6 +503,14 @@ else
|
||||
// +-----------------------------------------------------------------------+
|
||||
check_status(get_tab_status($page['mode']));
|
||||
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Add event handler |
|
||||
// +-----------------------------------------------------------------------+
|
||||
add_event_handler('nbm_render_global_customize_mail_content', 'render_global_customize_mail_content');
|
||||
trigger_action('nbm_event_handler_added');
|
||||
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Insert new users with mails |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
Reference in New Issue
Block a user