]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/outbox.php
Added mark_hash for content (i.e., to indicate tags with the
[quix0rs-gnu-social.git] / actions / outbox.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * action handler for message inbox
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Message
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @copyright 2008 Control Yourself, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://laconi.ca/
28  */
29
30 if (!defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/mailbox.php';
35
36 /**
37  * action handler for message outbox
38  *
39  * @category Message
40  * @package  Laconica
41  * @author   Evan Prodromou <evan@controlyourself.ca>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://laconi.ca/
44  * @see      MailboxAction
45  */
46
47 class OutboxAction extends MailboxAction
48 {
49     /**
50      * returns the title of the page
51      *
52      * @param User $user current user
53      * @param int  $page current page
54      *
55      * @return string localised title of the page
56      *
57      * @see MailboxAction::getTitle()
58      */
59
60     function getTitle($user, $page)
61     {
62         if ($page > 1) {
63             $title = sprintf(_("Outbox for %s - page %d"), $user->nickname, $page);
64         } else {
65             $title = sprintf(_("Outbox for %s"), $user->nickname);
66         }
67         return $title;
68     }
69
70     /**
71      * retrieve the messages for this user and this page
72      *
73      * Does a query for the right messages
74      *
75      * @param User $user The current user
76      * @param int  $page The page the user is on
77      *
78      * @return Message data object with stream for messages
79      *
80      * @see MailboxAction::getMessages()
81      */
82
83     function getMessages($user, $page)
84     {
85         $message = new Message();
86
87         $message->from_profile = $user->id;
88         $message->orderBy('created DESC, id DESC');
89         $message->limit((($page-1)*MESSAGES_PER_PAGE), MESSAGES_PER_PAGE + 1);
90
91         if ($message->find()) {
92             return $message;
93         } else {
94             return null;
95         }
96     }
97
98     /**
99      * returns the profile we want to show with the message
100      *
101      * For outboxes, we show the recipient.
102      *
103      * @param Message $message The message to get the profile for
104      *
105      * @return Profile The profile of the message recipient
106      *
107      * @see MailboxAction::getMessageProfile()
108      */
109
110     function getMessageProfile($message)
111     {
112         return $message->getTo();
113     }
114
115     /**
116      * instructions for using this page
117      *
118      * @return string localised instructions for using the page
119      */
120
121     function getInstructions()
122     {
123         return _('This is your outbox, which lists private messages you have sent.');
124     }
125 }