mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
9e53314c3a
- new code structure, optimized for next development; - created spl_autoloader for remove includes; - UM classes with namespaces; - deprecated global $ultimatemember; variable (use UM() instead); - new UM/WP roles logic; - new settings class and logic (deprecated Redux framework, deprecated some old options, added some new options); - new dependencies class for extensions; - WP native styles for backend fields; - new upgrades and license activations for extensions; - new logic form backend forms and fields; - created uninstall.php file for delete permanently all UM settings; - optimized registration/upgrade profile process; Deprecated Hooks: um_new_user_registration_plain um_user_registration_extra_hook um_add_user_frontend um_post_registration_global_hook um_admin_extend_directory_options_general (was action...will be filter)
116 lines
3.6 KiB
PHP
116 lines
3.6 KiB
PHP
<div class="um-members">
|
|
|
|
<div class="um-gutter-sizer"></div>
|
|
|
|
<?php $i = 0; foreach( um_members('users_per_page') as $member) { $i++; um_fetch_user( $member ); ?>
|
|
|
|
<div class="um-member um-role-<?php echo um_user( 'role' ); ?> <?php echo um_user('account_status'); ?> <?php if ($cover_photos) { echo 'with-cover'; } ?>">
|
|
|
|
<span class="um-member-status <?php echo um_user('account_status'); ?>"><?php echo um_user('account_status_name'); ?></span>
|
|
|
|
<?php
|
|
if ($cover_photos) {
|
|
$sizes = um_get_option('cover_thumb_sizes');
|
|
if ( UM()->mobile()->isTablet() ) {
|
|
$cover_size = $sizes[1];
|
|
} else {
|
|
$cover_size = $sizes[0];
|
|
}
|
|
?>
|
|
|
|
<div class="um-member-cover" data-ratio="<?php echo um_get_option('profile_cover_ratio'); ?>">
|
|
<div class="um-member-cover-e"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo esc_attr(um_user('display_name')); ?>"><?php echo um_user('cover_photo', $cover_size); ?></a></div>
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ($profile_photo) {
|
|
$default_size = str_replace( 'px', '', um_get_option('profile_photosize') );
|
|
$corner = um_get_option('profile_photocorner');
|
|
?>
|
|
<div class="um-member-photo radius-<?php echo $corner; ?>"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo esc_attr(um_user('display_name')); ?>"><?php echo get_avatar( um_user('ID'), $default_size ); ?></a></div>
|
|
<?php } ?>
|
|
|
|
<div class="um-member-card <?php if (!$profile_photo) { echo 'no-photo'; } ?>">
|
|
|
|
<?php if ( $show_name ) { ?>
|
|
<div class="um-member-name"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo esc_attr(um_user('display_name')); ?>"><?php echo um_user('display_name', 'html'); ?></a></div>
|
|
<?php } ?>
|
|
|
|
<?php do_action('um_members_just_after_name', um_user('ID'), $args); ?>
|
|
|
|
<?php do_action('um_members_after_user_name', um_user('ID'), $args); ?>
|
|
|
|
<?php
|
|
if ( $show_tagline && is_array( $tagline_fields ) ) {
|
|
|
|
um_fetch_user( $member );
|
|
|
|
foreach( $tagline_fields as $key ) {
|
|
if ( $key && um_filtered_value( $key ) ) {
|
|
$value = um_filtered_value( $key );
|
|
|
|
?>
|
|
|
|
<div class="um-member-tagline um-member-tagline-<?php echo $key;?>"><?php echo $value; ?></div>
|
|
|
|
<?php
|
|
} // end if
|
|
} // end foreach
|
|
} // end if $show_tagline
|
|
?>
|
|
|
|
<?php if ( $show_userinfo ) { ?>
|
|
|
|
<div class="um-member-meta-main">
|
|
|
|
<?php if ( $userinfo_animate ) { ?>
|
|
<div class="um-member-more"><a href="#"><i class="um-faicon-angle-down"></i></a></div>
|
|
<?php } ?>
|
|
|
|
<div class="um-member-meta <?php if ( !$userinfo_animate ) { echo 'no-animate'; } ?>">
|
|
|
|
<?php foreach( $reveal_fields as $key ) {
|
|
if ( $key && um_filtered_value( $key ) ) {
|
|
$value = um_filtered_value( $key );
|
|
|
|
?>
|
|
|
|
<div class="um-member-metaline um-member-metaline-<?php echo $key; ?>"><span><strong><?php echo UM()->fields()->get_label( $key ); ?>:</strong> <?php echo $value; ?></span></div>
|
|
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
|
|
<?php if ( $show_social ) { ?>
|
|
<div class="um-member-connect">
|
|
|
|
<?php UM()->fields()->show_social_urls(); ?>
|
|
|
|
</div>
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
<div class="um-member-less"><a href="#"><i class="um-faicon-angle-up"></i></a></div>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
um_reset_user_clean();
|
|
} // end foreach
|
|
|
|
um_reset_user();
|
|
?>
|
|
|
|
<div class="um-clear"></div>
|
|
|
|
</div>
|