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

903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
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">&nbsp;</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;">&nbsp;</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;">&nbsp;</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;">&nbsp;</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">&nbsp;</td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
    <div class="spacer" style="font-size: 10px; line-height: 10px; height: 10px;">&nbsp;</div>
    <?php
    $output = str_replace( array( "\r", "\n" ), '', ob_get_clean() );
 
    return $output;
}

Changelog

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.