Changeset 5999 for trunk/bp-messages/bp-messages-classes.php
- Timestamp:
- 04/21/2012 03:47:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-messages/bp-messages-classes.php
r5822 r5999 18 18 19 19 var $unread_count; 20 21 /** 22 * The content of the last message in this thread 23 * 24 * @since BuddyPress (1.2) 25 * @var string 26 */ 27 public $last_message_content; 28 29 /** 30 * The date of the last message in this thread 31 * 32 * @since BuddyPress (1.2) 33 * @var string 34 */ 35 public $last_message_date; 36 37 /** 38 * The ID of the last message in this thread 39 * 40 * @since BuddyPress (1.2) 41 * @var int 42 */ 43 public $last_message_id; 44 45 /** 46 * The subject of the last message in this thread 47 * 48 * @since BuddyPress (1.2) 49 * @var string 50 */ 51 public $last_message_subject; 52 53 /** 54 * The user ID of the author of the last message in this thread 55 * 56 * @since BuddyPress (1.2) 57 * @var int 58 */ 59 public $last_sender_id; 60 61 /** 62 * Sort order of the messages in this thread (ASC or DESC). 63 * 64 * @since BuddyPress (1.5) 65 * @var string 66 */ 67 public $messages_order; 20 68 21 69 function __construct( $thread_id = false, $order = 'ASC' ) {
Note: See TracChangeset
for help on using the changeset viewer.