- 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/home.php
r9604 r9786 3 3 <?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?> 4 4 5 <?php do_action( 'bp_before_group_home_content' ); ?> 5 <?php 6 7 /** 8 * Fires before the display of the group home content. 9 * 10 * @since BuddyPress (1.2.0) 11 */ 12 do_action( 'bp_before_group_home_content' ); ?> 6 13 7 14 <div id="item-header" role="complementary"> … … 17 24 <?php bp_get_options_nav(); ?> 18 25 19 <?php do_action( 'bp_group_options_nav' ); ?> 26 <?php 27 28 /** 29 * Fires after the display of group options navigation. 30 * 31 * @since BuddyPress (1.2.0) 32 */ 33 do_action( 'bp_group_options_nav' ); ?> 20 34 21 35 </ul> … … 25 39 <div id="item-body"> 26 40 27 <?php do_action( 'bp_before_group_body' ); 41 <?php 42 43 /** 44 * Fires before the display of the group home body. 45 * 46 * @since BuddyPress (1.2.0) 47 */ 48 do_action( 'bp_before_group_body' ); 28 49 29 50 /** … … 53 74 } else { 54 75 76 /** 77 * Fires before the display of the group status message. 78 * 79 * @since BuddyPress (1.1.0) 80 */ 55 81 do_action( 'bp_before_group_status_message' ); ?> 56 82 … … 59 85 </div> 60 86 61 <?php do_action( 'bp_after_group_status_message' ); 87 <?php 88 89 /** 90 * Fires after the display of the group status message. 91 * 92 * @since BuddyPress (1.1.0) 93 */ 94 do_action( 'bp_after_group_status_message' ); 62 95 63 96 } … … 91 124 endif; 92 125 126 /** 127 * Fires after the display of the group home body. 128 * 129 * @since BuddyPress (1.2.0) 130 */ 93 131 do_action( 'bp_after_group_body' ); ?> 94 132 95 133 </div><!-- #item-body --> 96 134 97 <?php do_action( 'bp_after_group_home_content' ); ?> 135 <?php 136 137 /** 138 * Fires after the display of the group home content. 139 * 140 * @since BuddyPress (1.2.0) 141 */ 142 do_action( 'bp_after_group_home_content' ); ?> 98 143 99 144 <?php endwhile; endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.