BP_Email_Tokens::token__member_card_small( BP_Email $bp_email, array $formatted_tokens, array $tokens )
Generate the output for token member.card
Description
Parameters
- $bp_email
-
(Required)
- $formatted_tokens
-
(Required)
- $tokens
-
(Required)
Return
(string) html for the output
Source
File: bp-core/classes/class-bp-email-tokens.php
public function token__member_card_small( $bp_email, $formatted_tokens, $tokens ) {
$output = '';
$settings = bp_email_get_appearance_settings();
$email_type = $bp_email->get( 'type' );
switch ( $email_type ) {
case 'friends-request-accepted':
$member_id = isset( $tokens['friend.id'] ) ? $tokens['friend.id'] : false;
break;
case 'groups-membership-request':
$member_id = isset( $tokens['requesting-user.id'] ) ? $tokens['requesting-user.id'] : false;
break;
case 'friends-request':
$member_id = isset( $tokens['initiator.id'] ) ? $tokens['initiator.id'] : false;
break;
case 'groups-invitation':
$member_id = isset( $tokens['inviter.id'] ) ? $tokens['inviter.id'] : false;
break;
}
//maybe search for some other token
if ( empty( $member_id ) ) {
return $output;
}
ob_start();
?>
<table class="member-details" cellspacing="0" cellpadding="0" border="0" width="100%"
style="background: <?php echo esc_attr( $settings['body_bg'] ); ?>; border: 1px solid <?php echo esc_attr( $settings['body_border_color'] ); ?>; border-radius: 4px; border-collapse: separate !important">
<tr>
<td align="center">
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="width: 100%;">
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="20%" class="mobile-block-full">
<a class="avatar-wrap mobile-center" href="<?php echo bp_core_get_user_domain( $member_id ); ?>"
style="display: block; border-radius: 3px; width: 140px;">
<img alt="" src="<?php echo bp_core_fetch_avatar( array(
'item_id' => $member_id,
'width' => 280,
'height' => 280,
'type' => 'full',
'html' => false
) ); ?>" width="140" height="140"
style="margin:0; padding:0; border:none; display:block;"
border="0"/>
</a>
</td>
<td width="4%" class="mobile-hide"> </td>
<td width="72%" class="mobile-block-padding-full">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
style="width: 100%;">
<tr>
<td height="10px" style="font-size: 10px; line-height: 10px;"> </td>
</tr>
<tr>
<td class="mobile-text-center">
<div style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: <?php echo esc_attr( floor( $settings['body_text_size'] * 1.25 ) . 'px' ) ?>; color: <?php echo esc_attr( $settings['body_secondary_text_color'] ); ?>; line-height: <?php echo esc_attr( floor( $settings['body_text_size'] * 1.75 ) . 'px' ) ?>;"><?php echo bp_core_get_user_displayname( $member_id ); ?></div>
<div class="spacer" style="font-size: 2px; line-height: 2px; height: 2px;"> </div>
<p style="opacity: 0.7; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: <?php echo esc_attr( floor( $settings[ 'body_text_size' ] * 0.8125 ) . 'px' ) ?>; color : <?php echo esc_attr( $settings[ 'body_text_color' ] ); ?>; margin: 0;">
@<?php echo bp_activity_get_user_mentionname( $member_id ); ?>
</p>
</td>
</tr>
<tr>
<td class="responsive-set-height">
<div class="spacer responsive-set-height" style="font-size: 30px; line-height: 30px; height: 30px;"> </div>
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="width: 100%;">
<tr>
<td>
<table cellpadding="0" cellspacing="0" border="0" width="47%" style="width: 47%;" align="left" class="no-responsive-table">
<tr>
<td height="34px" style="vertical-align: middle;">
<?php
$friend_count = friends_get_total_friend_count( $member_id );
$connection_text = ( $friend_count > 1 ) ? __('connections', 'buddyboss') : __('connection', 'buddyboss');
?>
<div style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: <?php echo esc_attr( floor( $settings[ 'body_text_size' ] * 0.8125 ) . 'px' ) ?>; color: <?php echo esc_attr( $settings['body_text_color'] ); ?>;">
<span style="color: <?php echo esc_attr( $settings['body_secondary_text_color'] ); ?>; opacity: 0.85;"><?php echo $friend_count; ?></span> <?php echo $connection_text; ?>
</div>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" width="47%" style="width: 47%;" align="right" class="no-responsive-table mobile-padding-bottom">
<tr>
<td height="34px" align="right" style="vertical-align: middle;" class="">
<a href="<?php echo bp_core_get_user_domain( $member_id ); ?>" target="_blank" rel="nofollow" style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size: <?php echo esc_attr( floor( $settings[ 'body_text_size' ] * 0.875 ) . 'px' ) ?>;text-decoration: none;display: block;height: <?php echo esc_attr( floor( $settings[ 'body_text_size' ] * 2.125 ) . 'px' ) ?>;line-height: <?php echo esc_attr( floor( $settings[ 'body_text_size' ] * 2 ) . 'px' ) ?>;"><?php _e( 'View Profile', 'buddyboss' ); ?></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="4%" class="mobile-hide"> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="spacer" style="font-size: 10px; line-height: 10px; height: 10px;"> </div>
<?php
$output = str_replace( array( "\r", "\n" ), '', ob_get_clean() );
return $output;
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.