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 outbox
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/
47 class OutboxAction extends MailboxAction
52 * @return string page title
57 if ($this->page > 1) {
58 return sprintf(_('Outbox for %1$s - page %2$d'),
59 $this->user->nickname, $page);
61 return sprintf(_('Outbox for %s'), $this->user->nickname);
66 * retrieve the messages for this user and this page
68 * Does a query for the right messages
70 * @return Message data object with stream for messages
72 * @see MailboxAction::getMessages()
75 function getMessages()
77 $message = new Message();
79 $message->from_profile = $this->user->id;
80 $message->orderBy('created DESC, id DESC');
81 $message->limit((($this->page - 1) * MESSAGES_PER_PAGE),
82 MESSAGES_PER_PAGE + 1);
84 if ($message->find()) {
92 * returns the profile we want to show with the message
94 * For outboxes, we show the recipient.
96 * @param Message $message The message to get the profile for
98 * @return Profile The profile of the message recipient
100 * @see MailboxAction::getMessageProfile()
103 function getMessageProfile($message)
105 return $message->getTo();
109 * instructions for using this page
111 * @return string localised instructions for using the page
114 function getInstructions()
116 return _('This is your outbox, which lists private messages you have sent.');