- 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/group-header.php
r9604 r9786 1 1 <?php 2 2 3 /** 4 * Fires before the display of a group's header. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 3 8 do_action( 'bp_before_group_header' ); 4 9 … … 13 18 <?php bp_group_list_admins(); 14 19 20 /** 21 * Fires after the display of the group's administrators. 22 * 23 * @since BuddyPress (1.1.0) 24 */ 15 25 do_action( 'bp_after_group_menu_admins' ); 16 26 17 27 if ( bp_group_has_moderators() ) : 28 29 /** 30 * Fires before the display of the group's moderators, if there are any. 31 * 32 * @since BuddyPress (1.1.0) 33 */ 18 34 do_action( 'bp_before_group_menu_mods' ); ?> 19 35 … … 22 38 <?php bp_group_list_mods(); 23 39 40 /** 41 * Fires after the display of the group's moderators, if there are any. 42 * 43 * @since BuddyPress (1.1.0) 44 */ 24 45 do_action( 'bp_after_group_menu_mods' ); 25 46 … … 42 63 <span class="activity"><?php printf( __( 'active %s', 'buddypress' ), bp_get_group_last_active() ); ?></span> 43 64 44 <?php do_action( 'bp_before_group_header_meta' ); ?> 65 <?php 66 67 /** 68 * Fires before the display of the group's header meta. 69 * 70 * @since BuddyPress (1.2.0) 71 */ 72 do_action( 'bp_before_group_header_meta' ); ?> 45 73 46 74 <div id="item-meta"> … … 50 78 <div id="item-buttons"> 51 79 52 <?php do_action( 'bp_group_header_actions' ); ?> 80 <?php 81 82 /** 83 * Fires in the group header actions section. 84 * 85 * @since BuddyPress (1.2.6) 86 */ 87 do_action( 'bp_group_header_actions' ); ?> 53 88 54 89 </div><!-- #item-buttons --> 55 90 56 <?php do_action( 'bp_group_header_meta' ); ?> 91 <?php 92 93 /** 94 * Fires after the group header actions section. 95 * 96 * @since BuddyPress (1.2.0) 97 */ 98 do_action( 'bp_group_header_meta' ); ?> 57 99 58 100 </div> … … 60 102 61 103 <?php 104 105 /** 106 * Fires after the display of a group's header. 107 * 108 * @since BuddyPress (1.2.0) 109 */ 62 110 do_action( 'bp_after_group_header' ); 63 111 do_action( 'template_notices' );
Note: See TracChangeset
for help on using the changeset viewer.