. /** * GNUsocial implementation of Direct Messages * * @package GNUsocial * @author Mikael Nordfeldth * @author Bruno Casteleiro * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ defined('GNUSOCIAL') || die(); /** * Action handler for the inbox * * @category Plugin * @package GNUsocial * @author Mikael Nordfeldth * @author Bruno Casteleiro * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class InboxAction extends MailboxAction { /** * Title of the page. * * @return string page title */ function title() : string { if ($this->page > 1) { // TRANS: Title for all but the first page of the inbox page. // TRANS: %1$s is the user's nickname, %2$s is the page number. return sprintf(_m('Inbox for %1$s - page %2$d'), $this->user->getNickname(), $this->page); } else { // TRANS: Title for the first page of the inbox page. // TRANS: %s is the user's nickname. return sprintf(_m('Inbox for %s'), $this->user->getNickname()); } } /** * Retrieve the messages for this user and this page. * * @return Notice data object with stream for messages */ function getMessages() { return MessageModel::inboxMessages($this->user, $this->page); } /** * Retrieve inbox MessageList widget */ function getMessageList($message) { return new InboxMessageList($this, $message); } /** * Instructions for using this page. * * @return string localised instructions for using the page */ function getInstructions() : string { // TRANS: Instructions for user inbox page. return _m('This is your inbox, which lists your incoming private messages.'); } }