3 * StatusNet, the distributed open-source microblogging tool
5 * Form for posting a direct message
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 * @author Sarven Capadisli <csarven@status.net>
26 * @copyright 2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/form.php';
38 * Form for posting a direct message
42 * @author Evan Prodromou <evan@status.net>
43 * @author Sarven Capadisli <csarven@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://status.net/
49 class MessageForm extends Form
52 * User to send a direct message to
57 * Pre-filled content of the form
64 * @param HTMLOutputter $out output channel
65 * @param User $to user to send a message to
66 * @param string $content content to pre-fill
68 function __construct($out=null, $to=null, $content=null)
70 parent::__construct($out);
73 $this->content = $content;
79 * @return string ID of the form
83 return 'form_notice-direct';
89 * @return string class of the form
93 return 'form_notice ajax-notice';
99 * @return string URL of the action
103 return common_local_url('newmessage');
111 function formLegend()
113 // TRANS: Form legend for direct notice.
114 $this->out->element('legend', null, _('Send a direct notice'));
124 $user = common_current_user();
126 $mutual_users = $user->mutuallySubscribedUsers();
129 // TRANS: Label entry in drop-down selection box in direct-message inbox/outbox.
130 // TRANS: This is the default entry in the drop-down box, doubling as instructions
131 // TRANS: and a brake against accidental submissions with the first user in the list.
132 $mutual[0] = _('Select recipient:');
134 while ($mutual_users->fetch()) {
135 if ($mutual_users->id != $user->id) {
136 $mutual[$mutual_users->id] = $mutual_users->nickname;
140 $mutual_users->free();
141 unset($mutual_users);
143 if (count($mutual) == 1) {
144 // TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message.
145 $mutual[0] = _('No mutual subscribers.');
148 // TRANS: Dropdown label in direct notice form.
149 $this->out->dropdown('to', _('To'), $mutual, null, false,
150 ($this->to) ? $this->to->id : null);
152 $this->out->element('textarea', array('class' => 'notice_data-text',
155 'name' => 'content'),
156 ($this->content) ? $this->content : '');
158 $contentLimit = Message::maxContent();
160 if ($contentLimit > 0) {
161 $this->out->element('span',
162 array('class' => 'count'),
172 function formActions()
174 $this->out->element('input', array('id' => 'notice_action-submit',
176 'name' => 'message_send',
178 // TRANS: Button text for sending a direct notice.
179 'value' => _m('Send button for sending notice', 'Send')));
186 * Uses a recipe to output the form.
189 * @see Widget::show()
194 $this->elementStart('div', 'input_forms');
198 'id' => 'input_form_direct',
199 'class' => 'input_form current nonav'
205 $this->elementEnd('div');
206 $this->elementEnd('div');