- Timestamp:
- 04/23/2015 05:08:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/members.php
r9604 r9786 1 1 <?php if ( bp_group_has_members( bp_ajax_querystring( 'group_members' ) ) ) : ?> 2 2 3 <?php do_action( 'bp_before_group_members_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of the group members content. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_group_members_content' ); ?> 4 11 5 12 <div id="pag-top" class="pagination"> … … 19 26 </div> 20 27 21 <?php do_action( 'bp_before_group_members_list' ); ?> 28 <?php 29 30 /** 31 * Fires before the display of the group members list. 32 * 33 * @since BuddyPress (1.1.0) 34 */ 35 do_action( 'bp_before_group_members_list' ); ?> 22 36 23 37 <ul id="member-list" class="item-list" role="main"> … … 35 49 <span class="activity"><?php bp_group_member_joined_since(); ?></span> 36 50 37 <?php do_action( 'bp_group_members_list_item' ); ?> 51 <?php 52 53 /** 54 * Fires inside the listing of an individual group member listing item. 55 * 56 * @since BuddyPress (1.1.0) 57 */ 58 do_action( 'bp_group_members_list_item' ); ?> 38 59 39 60 <?php if ( bp_is_active( 'friends' ) ) : ?> … … 43 64 <?php bp_add_friend_button( bp_get_group_member_id(), bp_get_group_member_is_friend() ); ?> 44 65 45 <?php do_action( 'bp_group_members_list_item_action' ); ?> 66 <?php 67 68 /** 69 * Fires inside the action section of an individual group member listing item. 70 * 71 * @since BuddyPress (1.1.0) 72 */ 73 do_action( 'bp_group_members_list_item_action' ); ?> 46 74 47 75 </div> … … 54 82 </ul> 55 83 56 <?php do_action( 'bp_after_group_members_list' ); ?> 84 <?php 85 86 /** 87 * Fires after the display of the group members list. 88 * 89 * @since BuddyPress (1.1.0) 90 */ 91 do_action( 'bp_after_group_members_list' ); ?> 57 92 58 93 <div id="pag-bottom" class="pagination"> … … 72 107 </div> 73 108 74 <?php do_action( 'bp_after_group_members_content' ); ?> 109 <?php 110 111 /** 112 * Fires after the display of the group members content. 113 * 114 * @since BuddyPress (1.1.0) 115 */ 116 do_action( 'bp_after_group_members_content' ); ?> 75 117 76 118 <?php else: ?>
Note: See TracChangeset
for help on using the changeset viewer.