- Timestamp:
- 04/28/2015 01:52:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups/invites.php
r9765 r9814 1 <?php do_action( 'bp_before_group_invites_content' ); ?> 1 <?php 2 3 /** 4 * Fires before the display of member group invites content. 5 * 6 * @since BuddyPress (1.1.0) 7 */ 8 do_action( 'bp_before_group_invites_content' ); ?> 2 9 3 10 <?php if ( bp_has_groups( 'type=invites&user_id=' . bp_loggedin_user_id() ) ) : ?> … … 18 25 </p> 19 26 20 <?php do_action( 'bp_group_invites_item' ); ?> 27 <?php 28 29 /** 30 * Fires inside the display of a member group invite item. 31 * 32 * @since BuddyPress (1.1.0) 33 */ 34 do_action( 'bp_group_invites_item' ); ?> 21 35 22 36 <div class="action"> … … 24 38 <a class="button reject confirm" href="<?php bp_group_reject_invite_link(); ?>"><?php _e( 'Reject', 'buddypress' ); ?></a> 25 39 26 <?php do_action( 'bp_group_invites_item_action' ); ?> 40 <?php 41 42 /** 43 * Fires inside the member group item action markup. 44 * 45 * @since BuddyPress (1.1.0) 46 */ 47 do_action( 'bp_group_invites_item_action' ); ?> 27 48 28 49 </div> … … 40 61 <?php endif;?> 41 62 42 <?php do_action( 'bp_after_group_invites_content' ); ?> 63 <?php 64 65 /** 66 * Fires after the display of member group invites content. 67 * 68 * @since BuddyPress (1.1.0) 69 */ 70 do_action( 'bp_after_group_invites_content' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.