mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
135 lines
3.7 KiB
PHP
135 lines
3.7 KiB
PHP
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
|
|
|
|
|
|
<script type="text/template" id="tmpl-um-member-list">
|
|
<div class="um-members-list">
|
|
|
|
<# if ( data.length > 0 ) { #>
|
|
<# _.each( data, function( user, key, list ) { #>
|
|
|
|
<div class="um-member um-role-{{{user.role}}} {{{user.account_status}}} <?php if ( $cover_photos ) { echo 'with-cover'; } ?>">
|
|
<div class="um-clear"></div>
|
|
|
|
<span class="um-member-status {{{user.account_status}}}">
|
|
{{{user.account_status_name}}}
|
|
</span>
|
|
|
|
<?php if ( $profile_photo ) { ?>
|
|
<div class="um-member-photo radius-<?php echo esc_attr( UM()->options()->get( 'profile_photocorner' ) ); ?>">
|
|
<a href="{{{user.profile_url}}}" title="{{{user.display_name}}}">
|
|
{{{user.avatar}}}
|
|
</a>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<div class="um-member-card <?php echo ! $profile_photo ? 'no-photo' : '' ?>">
|
|
<div class="um-member-card-header">
|
|
<?php if ( $show_name ) { ?>
|
|
<div class="um-member-name">
|
|
<a href="{{{user.profile_url}}}" title="{{{user.display_name}}}">
|
|
{{{user.display_name_html}}}
|
|
</a>
|
|
</div>
|
|
<?php }
|
|
|
|
do_action( 'um_members_after_user_name_tmpl', $args ); ?>
|
|
{{{user.hook_after_user_name}}}
|
|
</div>
|
|
|
|
<div class="um-member-card-content">
|
|
<?php if ( $show_tagline && ! empty( $tagline_fields ) && is_array( $tagline_fields ) ) {
|
|
foreach ( $tagline_fields as $key ) {
|
|
if ( empty( $key ) ) {
|
|
continue;
|
|
} ?>
|
|
|
|
<# if ( typeof user.<?php echo $key; ?> !== 'undefined' ) { #>
|
|
<div class="um-member-tagline um-member-tagline-<?php echo esc_attr( $key ); ?>"
|
|
data-key="<?php echo esc_attr( $key ); ?>">
|
|
{{{user.<?php echo $key; ?>}}}
|
|
</div>
|
|
<# } #>
|
|
|
|
<?php }
|
|
} ?>
|
|
</div>
|
|
|
|
|
|
<?php if ( $show_userinfo ) { ?>
|
|
|
|
<# var $show_block = false; #>
|
|
|
|
<?php foreach ( $reveal_fields as $k => $key ) {
|
|
if ( empty( $key ) ) {
|
|
unset( $reveal_fields[ $k ] );
|
|
} ?>
|
|
|
|
<# $show_block = typeof user.<?php echo $key; ?> !== 'undefined'; #>
|
|
<?php }
|
|
|
|
if ( $show_social ) { ?>
|
|
<# if ( ! $show_block ) { #>
|
|
<# $show_block = user.social_urls #>
|
|
<# } #>
|
|
<?php } ?>
|
|
|
|
<# if ( $show_block ) { #>
|
|
<div class="um-member-meta-main">
|
|
<div class="um-member-meta no-animate">
|
|
<?php foreach ( $reveal_fields as $key ) { ?>
|
|
|
|
<# if ( typeof user.<?php echo $key; ?> !== 'undefined' ) { #>
|
|
<div class="um-member-metaline um-member-metaline-<?php echo $key; ?>">
|
|
<strong>{{{user.label_<?php echo $key;?>}}}:</strong> {{{user.<?php echo $key;?>}}}
|
|
</div>
|
|
<# } #>
|
|
|
|
<?php }
|
|
|
|
if ( $show_social ) { ?>
|
|
<div class="um-member-connect">
|
|
{{{user.social_urls}}}
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
<# } #>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
|
|
<div class="um-member-card-actions">
|
|
|
|
<# if ( user.actions.length > 0 ) { #>
|
|
<# _.each( user.actions, function( action, action_key, action_list ) { #>
|
|
<div class="{{{action.wrapper_class}}}">
|
|
<a href="{{{action.url}}}" class="{{{action.class}}}">
|
|
{{{action.title}}}
|
|
</a>
|
|
</div>
|
|
<# }); #>
|
|
<# } #>
|
|
|
|
<?php do_action( 'um_members_just_after_name_tmpl', $args ); ?>
|
|
{{{user.hook_just_after_name}}}
|
|
|
|
</div>
|
|
|
|
|
|
<div class="um-clear"></div>
|
|
</div>
|
|
|
|
<div class="um-clear"></div>
|
|
|
|
<# }); #>
|
|
<# } else { #>
|
|
|
|
<div class="um-members-none">
|
|
<p><?php echo $no_users; ?></p>
|
|
</div>
|
|
|
|
<# } #>
|
|
|
|
<div class="um-clear"></div>
|
|
</div>
|
|
</script>
|