- 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/forum/edit.php
r9604 r9786 1 <?php do_action( 'bp_before_group_forum_edit_form' ); ?> 1 <?php 2 3 /** 4 * Fires at the top of the group forum edit form. 5 * 6 * @since BuddyPress (1.2.4) 7 */ 8 do_action( 'bp_before_group_forum_edit_form' ); ?> 2 9 3 10 <?php if ( bp_has_forum_topic_posts() ) : ?> … … 35 42 <?php endif; ?> 36 43 37 <?php do_action( 'bp_group_forum_topic_meta' ); ?> 44 <?php 45 46 /** 47 * Fires at the end of the group forum topic meta section. 48 * 49 * @since BuddyPress (1.2.5) 50 */ 51 do_action( 'bp_group_forum_topic_meta' ); ?> 38 52 39 53 </div> … … 43 57 <div id="edit-topic"> 44 58 45 <?php do_action( 'bp_group_before_edit_forum_topic' ); ?> 59 <?php 60 61 /** 62 * Fires before the group forum topic form fields. 63 * 64 * @since BuddyPress (1.2.0) 65 */ 66 do_action( 'bp_group_before_edit_forum_topic' ); ?> 46 67 47 68 <label for="topic_title"><?php _e( 'Title:', 'buddypress' ); ?></label> … … 54 75 <input type="text" name="topic_tags" id="topic_tags" value="<?php bp_forum_topic_tag_list(); ?>" /> 55 76 56 <?php do_action( 'bp_group_after_edit_forum_topic' ); ?> 77 <?php 78 79 /** 80 * Fires after the group forum topic form fields. 81 * 82 * @since BuddyPress (1.2.0) 83 */ 84 do_action( 'bp_group_after_edit_forum_topic' ); ?> 57 85 58 86 <p class="submit"><input type="submit" name="save_changes" id="save_changes" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?>" /></p> … … 66 94 <div id="edit-post"> 67 95 68 <?php do_action( 'bp_group_before_edit_forum_post' ); ?> 96 <?php 97 98 /** 99 * Fires before the group edit forum textarea. 100 * 101 * @since BuddyPress (1.2.0) 102 */ 103 do_action( 'bp_group_before_edit_forum_post' ); ?> 69 104 70 105 <textarea name="post_text" id="post_text"><?php bp_the_topic_post_edit_text(); ?></textarea> 71 106 72 <?php do_action( 'bp_group_after_edit_forum_post' ); ?> 107 <?php 108 109 /** 110 * Fires after the group edit forum textarea. 111 * 112 * @since BuddyPress (1.2.0) 113 */ 114 do_action( 'bp_group_after_edit_forum_post' ); ?> 73 115 74 116 <p class="submit"><input type="submit" name="save_changes" id="save_changes" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?>" /></p> … … 90 132 <?php endif;?> 91 133 92 <?php do_action( 'bp_after_group_forum_edit_form' ); ?> 134 <?php 135 136 /** 137 * Fires at the end of the group forum edit form. 138 * 139 * @since BuddyPress (1.2.4) 140 */ 141 do_action( 'bp_after_group_forum_edit_form' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.