- 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/activity.php
r9604 r9786 3 3 <li class="feed"><a href="<?php bp_group_activity_feed_link(); ?>" title="<?php esc_attr_e( 'RSS Feed', 'buddypress' ); ?>"><?php _e( 'RSS', 'buddypress' ); ?></a></li> 4 4 5 <?php do_action( 'bp_group_activity_syndication_options' ); ?> 5 <?php 6 7 /** 8 * Fires inside the syndication options list, after the RSS option. 9 * 10 * @since BuddyPress (1.2.0) 11 */ 12 do_action( 'bp_group_activity_syndication_options' ); ?> 6 13 7 14 <li id="activity-filter-select" class="last"> … … 12 19 <?php bp_activity_show_filters( 'group' ); ?> 13 20 14 <?php do_action( 'bp_group_activity_filter_options' ); ?> 21 <?php 22 23 /** 24 * Fires inside the select input for group activity filter options. 25 * 26 * @since BuddyPress (1.2.0) 27 */ 28 do_action( 'bp_group_activity_filter_options' ); ?> 15 29 </select> 16 30 </li> … … 18 32 </div><!-- .item-list-tabs --> 19 33 20 <?php do_action( 'bp_before_group_activity_post_form' ); ?> 34 <?php 35 36 /** 37 * Fires before the display of the group activity post form. 38 * 39 * @since BuddyPress (1.2.0) 40 */ 41 do_action( 'bp_before_group_activity_post_form' ); ?> 21 42 22 43 <?php if ( is_user_logged_in() && bp_group_is_member() ) : ?> … … 26 47 <?php endif; ?> 27 48 28 <?php do_action( 'bp_after_group_activity_post_form' ); ?> 29 <?php do_action( 'bp_before_group_activity_content' ); ?> 49 <?php 50 51 /** 52 * Fires after the display of the group activity post form. 53 * 54 * @since BuddyPress (1.2.0) 55 */ 56 do_action( 'bp_after_group_activity_post_form' ); ?> 57 <?php 58 59 /** 60 * Fires before the display of the group activities list. 61 * 62 * @since BuddyPress (1.2.0) 63 */ 64 do_action( 'bp_before_group_activity_content' ); ?> 30 65 31 66 <div class="activity single-group" role="main"> … … 35 70 </div><!-- .activity.single-group --> 36 71 37 <?php do_action( 'bp_after_group_activity_content' ); ?> 72 <?php 73 74 /** 75 * Fires after the display of the group activities list. 76 * 77 * @since BuddyPress (1.2.0) 78 */ 79 do_action( 'bp_after_group_activity_content' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.