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;
79 * Pre-filled location content of the form
90 * @param HTMLOutputter $out output channel
91 * @param string $action action to return to, if any
92 * @param string $content content to pre-fill
95 function __construct($out=null, $action=null, $content=null, $user=null, $inreplyto=null, $lat=null, $lon=null, $location_id=null, $location_ns=null)
97 parent::__construct($out);
99 $this->action = $action;
100 $this->content = $content;
101 $this->inreplyto = $inreplyto;
104 $this->location_id = $location_id;
105 $this->location_ns = $location_ns;
110 $this->user = common_current_user();
113 $this->profile = $this->user->getProfile();
115 if (common_config('attachments', 'uploads')) {
116 $this->enctype = 'multipart/form-data';
123 * @return string ID of the form
128 return 'form_notice';
134 * @return string class of the form
139 return 'form_notice';
145 * @return string URL of the action
150 return common_local_url('newnotice');
158 function formLegend()
160 $this->out->element('legend', null, _('Send a notice'));
171 if (Event::handle('StartShowNoticeFormData', array($this))) {
172 $this->out->element('label', array('for' => 'notice_data-text',
173 'id' => 'notice_data-text-label'),
174 sprintf(_('What\'s up, %s?'), $this->user->nickname));
175 // XXX: vary by defined max size
176 $this->out->element('textarea', array('id' => 'notice_data-text',
179 'name' => 'status_textarea'),
180 ($this->content) ? $this->content : '');
182 $contentLimit = Notice::maxContent();
184 if ($contentLimit > 0) {
185 $this->out->elementStart('dl', 'form_note');
186 $this->out->element('dt', null, _('Available characters'));
187 $this->out->element('dd', array('id' => 'notice_text-count'),
189 $this->out->elementEnd('dl');
192 if (common_config('attachments', 'uploads')) {
193 $this->out->element('label', array('for' => 'notice_data-attach'),_('Attach'));
194 $this->out->element('input', array('id' => 'notice_data-attach',
197 'title' => _('Attach a file')));
198 $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
201 $this->out->hidden('notice_return-to', $this->action, 'returnto');
203 $this->out->hidden('notice_in-reply-to', $this->inreplyto, 'inreplyto');
205 if ($this->user->shareLocation()) {
206 $this->out->hidden('notice_data-lat', empty($this->lat) ? (empty($this->profile->lat) ? null : $this->profile->lat) : $this->lat, 'lat');
207 $this->out->hidden('notice_data-lon', empty($this->lon) ? (empty($this->profile->lon) ? null : $this->profile->lon) : $this->lon, 'lon');
208 $this->out->hidden('notice_data-location_id', empty($this->location_id) ? (empty($this->profile->location_id) ? null : $this->profile->location_id) : $this->location_id, 'location_id');
209 $this->out->hidden('notice_data-location_ns', empty($this->location_ns) ? (empty($this->profile->location_ns) ? null : $this->profile->location_ns) : $this->location_ns, 'location_ns');
211 $this->out->elementStart('div', array('id' => 'notice_data-geo_wrap',
212 'title' => common_local_url('geocode')));
213 $this->out->checkbox('notice_data-geo', _('Share my location'), true);
214 $this->out->elementEnd('div');
215 $this->out->inlineScript(' var NoticeDataGeo_text = {'.
216 'ShareDisable: ' .json_encode(_('Do not share my location')).','.
217 'ErrorTimeout: ' .json_encode(_('Sorry, retrieving your geo location is taking longer than expected, please try again later')).
221 Event::handle('EndShowNoticeFormData', array($this));
231 function formActions()
233 $this->out->element('input', array('id' => 'notice_action-submit',
235 'name' => 'status_submit',
237 'value' => _m('Send button for sending notice', 'Send')));