- 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/messages/single.php
r9604 r9814 1 1 <div id="message-thread" role="main"> 2 2 3 <?php do_action( 'bp_before_message_thread_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of a single member message thread content. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_message_thread_content' ); ?> 4 11 5 12 <?php if ( bp_thread_has_messages() ) : ?> … … 29 36 </p> 30 37 31 <?php do_action( 'bp_before_message_thread_list' ); ?> 38 <?php 39 40 /** 41 * Fires before the display of the message thread list. 42 * 43 * @since BuddyPress (1.1.0) 44 */ 45 do_action( 'bp_before_message_thread_list' ); ?> 32 46 33 47 <?php while ( bp_thread_messages() ) : bp_thread_the_message(); ?> … … 37 51 <div class="message-metadata"> 38 52 39 <?php do_action( 'bp_before_message_meta' ); ?> 53 <?php 54 55 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 56 do_action( 'bp_before_message_meta' ); ?> 40 57 41 58 <?php bp_the_thread_message_sender_avatar( 'type=thumb&width=30&height=30' ); ?> … … 53 70 <span class="activity"><?php bp_the_thread_message_time_since(); ?></span> 54 71 55 <?php do_action( 'bp_after_message_meta' ); ?> 72 <?php 73 74 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 75 do_action( 'bp_after_message_meta' ); ?> 56 76 57 77 </div><!-- .message-metadata --> 58 78 59 <?php do_action( 'bp_before_message_content' ); ?> 79 <?php 80 81 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 82 do_action( 'bp_before_message_content' ); ?> 60 83 61 84 <div class="message-content"> … … 65 88 </div><!-- .message-content --> 66 89 67 <?php do_action( 'bp_after_message_content' ); ?> 90 <?php 91 92 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 93 do_action( 'bp_after_message_content' ); ?> 68 94 69 95 <div class="clear"></div> … … 73 99 <?php endwhile; ?> 74 100 75 <?php do_action( 'bp_after_message_thread_list' ); ?>101 <?php 76 102 77 <?php do_action( 'bp_before_message_thread_reply' ); ?> 103 /** 104 * Fires after the display of the message thread list. 105 * 106 * @since BuddyPress (1.1.0) 107 */ 108 do_action( 'bp_after_message_thread_list' ); ?> 109 110 <?php 111 112 /** 113 * Fires before the display of the message thread reply form. 114 * 115 * @since BuddyPress (1.1.0) 116 */ 117 do_action( 'bp_before_message_thread_reply' ); ?> 78 118 79 119 <form id="send-reply" action="<?php bp_messages_form_action(); ?>" method="post" class="standard-form"> … … 83 123 <div class="message-metadata"> 84 124 85 <?php do_action( 'bp_before_message_meta' ); ?> 125 <?php 126 127 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 128 do_action( 'bp_before_message_meta' ); ?> 86 129 87 130 <div class="avatar-box"> … … 91 134 </div> 92 135 93 <?php do_action( 'bp_after_message_meta' ); ?> 136 <?php 137 138 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 139 do_action( 'bp_after_message_meta' ); ?> 94 140 95 141 </div><!-- .message-metadata --> … … 97 143 <div class="message-content"> 98 144 99 <?php do_action( 'bp_before_message_reply_box' ); ?> 145 <?php 146 147 /** 148 * Fires before the display of the message reply box. 149 * 150 * @since BuddyPress (1.1.0) 151 */ 152 do_action( 'bp_before_message_reply_box' ); ?> 100 153 101 154 <textarea name="content" id="message_content" rows="15" cols="40"></textarea> 102 155 103 <?php do_action( 'bp_after_message_reply_box' ); ?> 156 <?php 157 158 /** 159 * Fires after the display of the message reply box. 160 * 161 * @since BuddyPress (1.1.0) 162 */ 163 do_action( 'bp_after_message_reply_box' ); ?> 104 164 105 165 <div class="submit"> … … 117 177 </form><!-- #send-reply --> 118 178 119 <?php do_action( 'bp_after_message_thread_reply' ); ?> 179 <?php 180 181 /** 182 * Fires after the display of the message thread reply form. 183 * 184 * @since BuddyPress (1.1.0) 185 */ 186 do_action( 'bp_after_message_thread_reply' ); ?> 120 187 121 188 <?php endif; ?> 122 189 123 <?php do_action( 'bp_after_message_thread_content' ); ?> 190 <?php 191 192 /** 193 * Fires after the display of a single member message thread content. 194 * 195 * @since BuddyPress (1.1.0) 196 */ 197 do_action( 'bp_after_message_thread_content' ); ?> 124 198 125 199 </div>
Note: See TracChangeset
for help on using the changeset viewer.