3 * StatusNet, the distributed open-source microblogging tool
5 * action handler for message inbox
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2008 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR.'/lib/mailbox.php';
37 * action handler for message inbox
41 * @author Evan Prodromou <evan@status.net>
42 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43 * @link http://status.net/
46 class InboxAction extends MailboxAction
52 * @return string page title
56 if ($this->page > 1) {
57 // TRANS: Title for all but the first page of the inbox page.
58 // TRANS: %1$s is the user's nickname, %2$s is the page number.
59 return sprintf(_('Inbox for %1$s - page %2$d'), $this->user->nickname,
62 // TRANS: Title for the first page of the inbox page.
63 // TRANS: %s is the user's nickname.
64 return sprintf(_('Inbox for %s'), $this->user->nickname);
69 * Retrieve the messages for this user and this page
71 * Does a query for the right messages
73 * @return Message data object with stream for messages
75 * @see MailboxAction::getMessages()
77 function getMessages()
79 $message = new Message();
81 $message->to_profile = $this->user->id;
82 $message->orderBy('created DESC, id DESC');
83 $message->limit((($this->page - 1) * MESSAGES_PER_PAGE),
84 MESSAGES_PER_PAGE + 1);
86 if ($message->find()) {
93 function getMessageList($message)
95 return new InboxMessageList($this, $message);
99 * Instructions for using this page
101 * @return string localised instructions for using the page
103 function getInstructions()
105 // TRANS: Instructions for user inbox page.
106 return _('This is your inbox, which lists your incoming private messages.');
110 class InboxMessageList extends MessageList
112 function newItem($message)
114 return new InboxMessageListItem($this->out, $message);
118 class InboxMessageListItem extends MessageListItem
121 * Returns the profile we want to show with the message
123 * @return Profile The profile that matches the message
125 function getMessageProfile()
127 return $this->message->getFrom();