3 * StatusNet, the distributed open-source microblogging tool
5 * Form for inviting collegues and friends
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 Zach Copley <zach@status.net>
25 * @copyright 2011 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')) {
34 require_once INSTALLDIR . '/lib/form.php';
37 * Form for inviting collegues and friends
41 * @author Zach Copley <zach@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/
45 class InviteForm extends Form
50 * @param Action $out output channel
52 function __construct($out=null)
54 parent::__construct($out);
60 * @return string ID of the form
70 * @return string URL of the action
74 return common_local_url('invite');
84 // TRANS: Form legend.
85 $this->out->element('legend', null, _('Invite collegues'));
89 * Data elements of the form
95 $this->out->elementStart('ul', 'form_data');
96 $this->out->elementStart('li');
99 // TRANS: Field label for a list of e-mail addresses.
100 _('Email addresses'),
101 $this->out->trimmed('addresses'),
102 // TRANS: Field title for a list of e-mail addresses.
103 _('Addresses of friends to invite (one per line).')
105 $this->out->elementEnd('li');
106 $this->out->elementStart('li');
107 $this->out->textarea(
108 // TRANS: Field label for a personal message to send to invitees.
109 'personal', _('Personal message'),
110 $this->out->trimmed('personal'),
111 // TRANS: Field title for a personal message to send to invitees.
112 _('Optionally add a personal message to the invitation.')
114 $this->out->elementEnd('li');
115 $this->out->elementEnd('ul');
123 function formActions()
127 // TRANS: Send button for inviting friends
128 _m('BUTTON','Send'), 'submit form_action-primary',
130 // TRANS: Submit button title.
131 _('Send invitations.')