Seditio Source
Root |
./othercms/b2evolution_7.2.3/skins_email/account_closed.html.php
<?php
/**
 * This is sent to ((SystemAdmins)) to notify them that a ((User)) account has been closed (either by the User themselves or by another Admin).
 *
 * 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.html.php', $params );
// ------------------------------- END OF EMAIL HEADER --------------------------------

global $admin_url;

// Default params:
$params = array_merge( array(
       
'login'   => '',
       
'email'   => '',
       
'reason'  => '',
       
'user_ID' => '',
       
'closed_by_admin' => '',// Login of admin which closed current user account
       
'days_count' => 0
   
), $params );

echo
'<p'.emailskin_style( '.p' ).'>';
if( empty(
$params['closed_by_admin'] ) )
{
// Current user closed own account
   
printf( T_('A user account was closed %s days after creation.'), $params['days_count'] );
}
else
{
// Admin closed current user account
   
printf( T_('A user account was closed %s days after creation by %s'), $params['days_count'], get_user_colored_login_link( $params['closed_by_admin'], array( 'use_style' => true, 'protocol' => 'http:', 'login_text' => 'name' ) ) );
}
echo
"</p>\n";

echo
'<p'.emailskin_style( '.p' ).'>'./* TRANS: noun */ T_('Login').": ".get_user_colored_login_link( $params['login'], array( 'use_style' => true, 'protocol' => 'http:' ) )."</p>\n";
echo
'<p'.emailskin_style( '.p' ).'>'.T_('Email').": ".$params['email']."</p>\n";
echo
'<p'.emailskin_style( '.p' ).'>'.T_('Account close reason').": ".nl2br( $params['reason'] )."</p>\n";

// User's pictures:
echo '<p'.emailskin_style( '.p' ).'>'.T_('The current profile pictures for this account are:').'</p>'."\n";
$user_pictures = '';
$UserCache = & get_UserCache();
if(
$User = $UserCache->get_by_ID( $params['user_ID'], false, false ) )
{
   
$user_avatars = $User->get_avatar_Links( false );
    foreach(
$user_avatars as $user_Link )
    {
       
$user_pictures .= $user_Link->get_tag( array(
               
'before_image'        => '',
               
'before_image_legend' => '',
               
'after_image_legend'  => '',
               
'after_image'         => ' ',
               
'image_size'          => 'crop-top-80x80',
            ) );
    }
}
echo empty(
$user_pictures ) ? '<p'.emailskin_style( '.p' ).'><b>'.T_('No pictures.').'</b></p>' : $user_pictures;

// Buttons:
echo '<div'.emailskin_style( 'div.buttons' ).'>'."\n";
echo
get_link_tag( $admin_url.'?ctrl=user&user_tab=profile&user_ID='.$params['user_ID'], T_( 'Edit User account' ), 'div.buttons a+a.btn-primary' )."\n";
echo
"</div>\n";

// Footer vars:
$params['unsubscribe_text'] = T_( 'If you don\'t want to receive any more notification when an account was closed, click here:' )
            .
' <a href="'.get_htsrv_url().'quick_unsubscribe.php?type=account_closed&user_ID=$user_ID$&key=$unsubscribe_key$"'.emailskin_style( '.a' ).'>'
           
.T_('instant unsubscribe').'</a>.';

// ---------------------------- EMAIL FOOTER INCLUDED HERE ----------------------------
emailskin_include( '_email_footer.inc.html.php', $params );
// ------------------------------- END OF EMAIL FOOTER --------------------------------
?>