inboxmessagelistitem.php 333 B

1234567891011121314151617
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. class InboxMessageListItem extends MessageListItem
  4. {
  5. /**
  6. * Returns the profile we want to show with the message
  7. *
  8. * @return Profile The profile that matches the message
  9. */
  10. function getMessageProfile()
  11. {
  12. return $this->message->getFrom();
  13. }
  14. }