<?php
/**
* * This is sent to ((Users)) to notify them that a post has been assigned to them together with sending new comment.
*
* For more info about email skins, see: http://b2evolution.net/man/themes-templates-skins/email-skins/
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
* @copyright (c)2003-2020 by Francois Planque - {@link http://fplanque.com/}
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
// ---------------------------- EMAIL HEADER INCLUDED HERE ----------------------------
emailskin_include( '_email_header.inc.txt.php', $params );
// ------------------------------- END OF EMAIL HEADER --------------------------------
global $admin_url, $baseurl;
// Default params:
$params = array_merge( array(
'notify_full' => false,
'Comment' => NULL,
'recipient_User' => NULL,
'principal_User' => NULL,
), $params );
$principal_User = $params['principal_User'];
$assigned_User = $params['recipient_User'];
$Comment = $params['Comment'];
$Item = $Comment->get_Item();
$Collection = $Blog = & $Item->get_Blog();
if( $params['notify_full'] )
{ /* Full notification */
echo sprintf( T_('%s assigned you the following post'), $principal_User->get( 'login' ) ).':'."\n\n";
echo $Item->get( 'title' ).' -- '.$Blog->get( 'shortname' ).' ( '.str_replace( '&', '&', $Blog->gen_blogurl() ).' )'."\n";
echo T_('Status').': '.$Item->get( 't_extra_status' )."\n";
if( $Comment->is_meta() )
{ // Internal comment:
printf( T_('With the following [%s] Comment'), T_('Meta') );
}
else
{ // Normal comment:
$visibility_statuses = get_visibility_statuses( '', array() );
// TRANS: %s is comment status title, like Public, Community, etc.
printf( T_('With the following [%s] Comment'), $visibility_statuses[ $Comment->get( 'status' ) ] );
}
echo ': '."\n\n";
echo $Comment->get( 'content' )."\n";
// Attachments:
$LinkCache = & get_LinkCache();
$comment_links = $LinkCache->get_by_comment_ID( $Comment->ID );
if( ! empty( $comment_links ) )
{
echo "\n".T_('Attachments').":\n";
foreach( $comment_links as $Link )
{
if( $File = $Link->get_File() )
{
echo ' - '.$File->get_name().': '.$File->get_url()."\n";
}
}
echo "\n";
}
}
else
{ /* Short notification */
echo sprintf( T_( '%s assigned you a post on %s with title %s.' ), $principal_User->get_username(), '"'.$Blog->get( 'shortname' ).'"', '"'.$Item->get( 'title' ).'"' );
echo "\n\n"
.T_('Status').': '.$Item->get( 't_extra_status' )."\n\n"
.T_( 'This is a short form notification. To make these emails more useful, ask the administrator to send you long form notifications instead.' )
."\n";
}
echo "\n";
echo T_( 'To read the full content of the comment click here:' ).' ';
echo $Comment->get_permanent_url( '&', '#comments' );
echo "\n";
// Footer vars:
$params['unsubscribe_text'] = T_( 'If you don\'t want to receive any more notifications when posts are assigned to you, click here:' ).' '.
get_htsrv_url().'quick_unsubscribe.php?type=post_assignment&user_ID=$user_ID$&key=$unsubscribe_key$';
// ---------------------------- EMAIL FOOTER INCLUDED HERE ----------------------------
emailskin_include( '_email_footer.inc.txt.php', $params );
// ------------------------------- END OF EMAIL FOOTER --------------------------------
?>