3 * StatusNet, the distributed open-source microblogging tool
5 * Form for posting a notice
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 notice
40 * Frequently-used form for posting a notice
44 * @author Evan Prodromou <evan@status.net>
45 * @author Sarven Capadisli <csarven@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://status.net/
52 class NoticeForm extends Form
55 * Current action, used for returning to this page.
61 * Pre-filled content of the form
73 * The notice being replied to
76 var $inreplyto = null;
81 * @param HTMLOutputter $out output channel
82 * @param string $action action to return to, if any
83 * @param string $content content to pre-fill
86 function __construct($out=null, $action=null, $content=null, $user=null, $inreplyto=null)
88 parent::__construct($out);
90 $this->action = $action;
91 $this->content = $content;
92 $this->inreplyto = $inreplyto;
97 $this->user = common_current_user();
100 if (common_config('attachments', 'uploads')) {
101 $this->enctype = 'multipart/form-data';
108 * @return int ID of the form
113 return 'form_notice';
119 * @return string URL of the action
124 return common_local_url('newnotice');
132 function formLegend()
134 $this->out->element('legend', null, _('Send a notice'));
145 if (Event::handle('StartShowNoticeFormData', array($this))) {
146 $this->out->element('label', array('for' => 'notice_data-text'),
147 sprintf(_('What\'s up, %s?'), $this->user->nickname));
148 // XXX: vary by defined max size
149 $this->out->element('textarea', array('id' => 'notice_data-text',
152 'name' => 'status_textarea'),
153 ($this->content) ? $this->content : '');
155 $contentLimit = Notice::maxContent();
157 $this->out->element('script', array('type' => 'text/javascript'),
158 'maxLength = ' . $contentLimit . ';');
160 if ($contentLimit > 0) {
161 $this->out->elementStart('dl', 'form_note');
162 $this->out->element('dt', null, _('Available characters'));
163 $this->out->element('dd', array('id' => 'notice_text-count'),
165 $this->out->elementEnd('dl');
168 if (common_config('attachments', 'uploads')) {
169 $this->out->element('label', array('for' => 'notice_data-attach'),_('Attach'));
170 $this->out->element('input', array('id' => 'notice_data-attach',
173 'title' => _('Attach a file')));
174 $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
177 $this->out->hidden('notice_return-to', $this->action, 'returnto');
179 $this->out->hidden('notice_in-reply-to', $this->inreplyto, 'inreplyto');
181 Event::handle('StartShowNoticeFormData', array($this));
191 function formActions()
193 $this->out->element('input', array('id' => 'notice_action-submit',
195 'name' => 'status_submit',
197 'value' => _('Send')));