- Timestamp:
- 04/23/2015 05:08:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum.php
r9604 r9786 1 1 <?php 2 2 3 /** 4 * Fires before the display of a group's forum content. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 3 8 do_action( 'bp_before_group_forum_content' ); 4 9 … … 30 35 <?php endif; ?> 31 36 32 <?php do_action( 'bp_forums_directory_group_sub_types' ); ?> 37 <?php 38 39 /** This filter is documented in bp-templates/bp-legacy/buddypress/forums/index.php. */ 40 do_action( 'bp_forums_directory_group_sub_types' ); ?> 33 41 34 42 <li id="forums-order-select" class="last filter"> … … 40 48 <option value="unreplied"><?php _e( 'Unreplied', 'buddypress' ); ?></option> 41 49 42 <?php do_action( 'bp_forums_directory_order_options' ); ?> 50 <?php 51 52 /** This filter is documented in bp-templates/bp-legacy/buddypress/forums/index.php. */ 53 do_action( 'bp_forums_directory_order_options' ); ?> 43 54 44 55 </select> … … 55 66 <?php endif; ?> 56 67 57 <?php do_action( 'bp_after_group_forum_content' ); ?> 68 <?php 69 70 /** 71 * Fires after the display of a group's forum content. 72 * 73 * @since BuddyPress (1.2.0) 74 */ 75 do_action( 'bp_after_group_forum_content' ); ?> 58 76 59 77 <?php if ( !bp_is_group_forum_topic_edit() && !bp_is_group_forum_topic() ) : ?> … … 64 82 <div id="new-topic-post"> 65 83 66 <?php do_action( 'bp_before_group_forum_post_new' ); ?> 84 <?php 85 86 /** 87 * Fires before the display of a group forum new post form. 88 * 89 * @since BuddyPress (1.2.0) 90 */ 91 do_action( 'bp_before_group_forum_post_new' ); ?> 67 92 68 93 <?php if ( bp_groups_auto_join() && !bp_group_is_member() ) : ?> … … 82 107 <input type="text" name="topic_tags" id="topic_tags" value="" /> 83 108 84 <?php do_action( 'bp_after_group_forum_post_new' ); ?> 109 <?php 110 111 /** 112 * Fires after the display of a group forum new post form. 113 * 114 * @since BuddyPress (1.2.0) 115 */ 116 do_action( 'bp_after_group_forum_post_new' ); ?> 85 117 86 118 <div class="submit">
Note: See TracChangeset
for help on using the changeset viewer.