* Fires inside the messages box table row to add a new column.
         *
         * This is to primarily add a <td> cell to the message box table. Use the
         * related 'bp_messages_inbox_list_header' hook to add a <th> header cell.
         *
         * @since 1.1.0
         */
        do_action('bp_messages_inbox_list_item');
        ?>

						<?php 
        if (bp_is_active('messages', 'star')) {
            ?>
							<td class="thread-star">
								<?php 
            bp_the_message_star_action_link(array('thread_id' => bp_get_message_thread_id()));
            ?>
							</td>
						<?php 
        }
        ?>

						<td class="thread-options">
							<?php 
        if (bp_message_thread_has_unread()) {
            ?>
								<a class="read" href="<?php 
            bp_the_message_thread_mark_read_url();
            ?>
"><?php 
            _e('Read', 'buddypress');
Beispiel #2
0
          <?php 
        }
        ?>

          <span class="activity"><?php 
        bp_the_thread_message_time_since();
        ?>
</span>

          <?php 
        if (bp_is_active('messages', 'star')) {
            ?>
            <div class="message-star-actions">
              <?php 
            bp_the_message_star_action_link();
            ?>
            </div>
          <?php 
        }
        ?>

          <?php 
        /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
        do_action('bp_after_message_meta');
        ?>

        </div><!-- .message-metadata -->

        <?php 
        /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */