- 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/groups-loop.php
r9604 r9786 12 12 ?> 13 13 14 <?php do_action( 'bp_before_groups_loop' ); ?> 14 <?php 15 16 /** 17 * Fires before the display of groups from the groups loop. 18 * 19 * @since BuddyPress (1.2.0) 20 */ 21 do_action( 'bp_before_groups_loop' ); ?> 15 22 16 23 <?php if ( bp_has_groups( bp_ajax_querystring( 'groups' ) ) ) : ?> … … 32 39 </div> 33 40 34 <?php do_action( 'bp_before_directory_groups_list' ); ?> 41 <?php 42 43 /** 44 * Fires before the listing of the groups list. 45 * 46 * @since BuddyPress (1.1.0) 47 */ 48 do_action( 'bp_before_directory_groups_list' ); ?> 35 49 36 50 <ul id="groups-list" class="item-list" role="main"> … … 49 63 <div class="item-desc"><?php bp_group_description_excerpt(); ?></div> 50 64 51 <?php do_action( 'bp_directory_groups_item' ); ?> 65 <?php 66 67 /** 68 * Fires inside the listing of an individual group listing item. 69 * 70 * @since BuddyPress (1.1.0) 71 */ 72 do_action( 'bp_directory_groups_item' ); ?> 52 73 53 74 </div> … … 55 76 <div class="action"> 56 77 57 <?php do_action( 'bp_directory_groups_actions' ); ?> 78 <?php 79 80 /** 81 * Fires inside the action section of an individual group listing item. 82 * 83 * @since BuddyPress (1.1.0) 84 */ 85 do_action( 'bp_directory_groups_actions' ); ?> 58 86 59 87 <div class="meta"> … … 72 100 </ul> 73 101 74 <?php do_action( 'bp_after_directory_groups_list' ); ?> 102 <?php 103 104 /** 105 * Fires after the listing of the groups list. 106 * 107 * @since BuddyPress (1.1.0) 108 */ 109 do_action( 'bp_after_directory_groups_list' ); ?> 75 110 76 111 <div id="pag-bottom" class="pagination"> … … 98 133 <?php endif; ?> 99 134 100 <?php do_action( 'bp_after_groups_loop' ); ?> 135 <?php 136 137 /** 138 * Fires after the display of groups from the groups loop. 139 * 140 * @since BuddyPress (1.2.0) 141 */ 142 do_action( 'bp_after_groups_loop' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.