- 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/activity.php
r9604 r9814 22 22 <?php bp_activity_show_filters(); ?> 23 23 24 <?php do_action( 'bp_member_activity_filter_options' ); ?> 24 <?php 25 26 /** 27 * Fires inside the select input for member activity filter options. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_member_activity_filter_options' ); ?> 25 32 26 33 </select> … … 29 36 </div><!-- .item-list-tabs --> 30 37 31 <?php do_action( 'bp_before_member_activity_post_form' ); ?> 38 <?php 39 40 /** 41 * Fires before the display of the member activity post form. 42 * 43 * @since BuddyPress (1.2.0) 44 */ 45 do_action( 'bp_before_member_activity_post_form' ); ?> 32 46 33 47 <?php … … 35 49 bp_get_template_part( 'activity/post-form' ); 36 50 51 /** 52 * Fires after the display of the member activity post form. 53 * 54 * @since BuddyPress (1.2.0) 55 */ 37 56 do_action( 'bp_after_member_activity_post_form' ); 57 58 /** 59 * Fires before the display of the member activities list. 60 * 61 * @since BuddyPress (1.2.0) 62 */ 38 63 do_action( 'bp_before_member_activity_content' ); ?> 39 64 … … 44 69 </div><!-- .activity --> 45 70 46 <?php do_action( 'bp_after_member_activity_content' ); ?> 71 <?php 72 73 /** 74 * Fires after the display of the member activities list. 75 * 76 * @since BuddyPress (1.2.0) 77 */ 78 do_action( 'bp_after_member_activity_content' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.