Changeset 3819
- Timestamp:
- 01/22/2011 02:03:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/groups/single/members.php
r3771 r3819 1 1 <?php if ( bp_group_has_members( 'exclude_admins_mods=0' ) ) : ?> 2 2 3 <?php do_action( 'bp_before_group_members_content' ) ?>3 <?php do_action( 'bp_before_group_members_content' ); ?> 4 4 5 <div class="pagination no-ajax"> 5 <div class="item-list-tabs" id="subnav" role="navigation"> 6 <ul> 6 7 7 <div id="member-count" class="pag-count"> 8 <?php bp_group_member_pagination_count() ?> 8 <?php do_action( 'bp_members_directory_member_sub_types' ); ?> 9 10 <li id="members-order-select" class="last filter"> 11 12 <?php _e( 'Order By:', 'buddypress' ); ?> 13 14 <select> 15 <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option> 16 <option value="newest"><?php _e( 'Newest Registered', 'buddypress' ); ?></option> 17 18 <?php if ( bp_is_active( 'profile' ) ) : ?> 19 20 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> 21 22 <?php endif; ?> 23 24 <?php do_action( 'bp_members_directory_order_options' ); ?> 25 26 </select> 27 </li> 28 </ul> 29 </div> 30 31 <div id="pag-top" class="pagination"> 32 33 <div class="pag-count" id="member-count-top"> 34 35 <?php bp_members_pagination_count(); ?> 36 9 37 </div> 10 38 11 <div id="member-pagination" class="pagination-links"> 12 <?php bp_group_member_pagination() ?> 39 <div class="pagination-links" id="member-pag-top"> 40 41 <?php bp_members_pagination_links(); ?> 42 13 43 </div> 14 44 15 45 </div> 16 46 17 <?php do_action( 'bp_before_group_members_list' ) ?>47 <?php do_action( 'bp_before_group_members_list' ); ?> 18 48 19 49 <ul id="member-list" class="item-list" role="main"> 50 20 51 <?php while ( bp_group_members() ) : bp_group_the_member(); ?> 21 52 22 53 <li> 23 <a href="<?php bp_group_member_domain() ?>"> 24 <?php bp_group_member_avatar_thumb() ?> 54 <a href="<?php bp_group_member_domain(); ?>"> 55 56 <?php bp_group_member_avatar_thumb(); ?> 57 25 58 </a> 26 <h5><?php bp_group_member_link() ?></h5>27 <span class="activity"><?php bp_group_member_joined_since() ?></span>28 59 29 <?php do_action( 'bp_group_members_list_item' ) ?> 60 <h5><?php bp_group_member_link(); ?></h5> 61 <span class="activity"><?php bp_group_member_joined_since(); ?></span> 62 63 <?php do_action( 'bp_group_members_list_item' ); ?> 30 64 31 65 <?php if ( bp_is_active( 'friends' ) ) : ?> 32 66 33 67 <div class="action"> 34 <?php bp_add_friend_button( bp_get_group_member_id(), bp_get_group_member_is_friend() ) ?>35 68 36 <?php do_action( 'bp_group_members_list_item_action' ) ?> 69 <?php bp_add_friend_button( bp_get_group_member_id(), bp_get_group_member_is_friend() ); ?> 70 71 <?php do_action( 'bp_group_members_list_item_action' ); ?> 72 37 73 </div> 38 74 … … 44 80 </ul> 45 81 46 <?php do_action( 'bp_after_group_members_content' ) ?> 82 <?php do_action( 'bp_after_group_members_list' ); ?> 83 84 <div id="pag-bottom" class="pagination"> 85 86 <div class="pag-count" id="member-count-bottom"> 87 88 <?php bp_members_pagination_count(); ?> 89 90 </div> 91 92 <div class="pagination-links" id="member-pag-bottom"> 93 94 <?php bp_members_pagination_links(); ?> 95 96 </div> 97 98 </div> 99 100 <?php do_action( 'bp_after_group_members_content' ); ?> 47 101 48 102 <?php else: ?>
Note: See TracChangeset
for help on using the changeset viewer.