]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/DirectMessage/lib/inboxmessagelistitem.php
Use File->getID()
[quix0rs-gnu-social.git] / plugins / DirectMessage / lib / inboxmessagelistitem.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 class InboxMessageListItem extends MessageListItem
6 {
7     /**
8      * Returns the profile we want to show with the message
9      *
10      * @return Profile The profile that matches the message
11      */
12     function getMessageProfile()
13     {
14         return $this->message->getFrom();
15     }
16 }