3 * StatusNet, the distributed open-source microblogging tool
5 * Form for editing a group
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 editing a group
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/
47 * @see UnsubscribeForm
49 class GroupEditForm extends Form
52 * group for user to join
59 * @param Action $out output channel
60 * @param User_group $group group to join
62 function __construct($out=null, $group=null)
64 parent::__construct($out);
66 $this->group = $group;
72 * @return string ID of the form
77 return 'form_group_edit-' . $this->group->id;
79 return 'form_group_add';
86 * @return string of the form class
90 return 'form_settings';
96 * @return string URL of the action
101 return common_local_url('editgroup',
102 array('nickname' => $this->group->nickname));
104 return common_local_url('newgroup');
113 function formLegend()
115 // TRANS: Form legend for group edit form.
116 $this->out->element('legend', null, _('Create a new group'));
120 * Data elements of the form
127 $id = $this->group->id;
128 $nickname = $this->group->nickname;
129 $fullname = $this->group->fullname;
130 $homepage = $this->group->homepage;
131 $description = $this->group->description;
132 $location = $this->group->location;
142 $this->out->elementStart('ul', 'form_data');
143 if (Event::handle('StartGroupEditFormData', array($this))) {
144 $this->out->elementStart('li');
145 $this->out->hidden('groupid', $id);
146 // TRANS: Field label on group edit form.
147 $this->out->input('newnickname', _('Nickname'),
148 ($this->out->arg('newnickname')) ? $this->out->arg('newnickname') : $nickname,
149 // TRANS: Field title on group edit form.
150 _('1-64 lowercase letters or numbers, no punctuation or spaces.'),
152 $this->group instanceof User_group && !common_config('profile', 'changenick')
153 ? array('disabled'=>'disabled') // can't change nickname
154 : array()); // either we can change nickname, or we're creating a new group.
155 $this->out->elementEnd('li');
156 $this->out->elementStart('li');
157 // TRANS: Field label on group edit form.
158 $this->out->input('fullname', _('Full name'),
159 ($this->out->arg('fullname')) ? $this->out->arg('fullname') : $fullname);
160 $this->out->elementEnd('li');
161 $this->out->elementStart('li');
162 // TRANS: Field label on group edit form; points to "more info" for a group.
163 $this->out->input('homepage', _('Homepage'),
164 ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage,
165 // TRANS: Field title on group edit form.
166 _('URL of the homepage or blog of the group or topic.'));
167 $this->out->elementEnd('li');
168 $this->out->elementStart('li');
169 $desclimit = User_group::maxDescription();
170 if ($desclimit == 0) {
171 // TRANS: Text area title for group description when there is no text limit.
172 $descinstr = _('Describe the group or topic.');
174 // TRANS: Text area title for group description.
175 // TRANS: %d is the number of characters available for the description.
176 $descinstr = sprintf(_m('Describe the group or topic in %d character or less.',
177 'Describe the group or topic in %d characters or less.',
181 // TRANS: Text area label on group edit form; contains description of group.
182 $this->out->textarea('description', _('Description'),
183 ($this->out->arg('description')) ? $this->out->arg('description') : $description,
185 $this->out->elementEnd('li');
186 $this->out->elementStart('li');
187 // TRANS: Field label on group edit form.
188 $this->out->input('location', _('Location'),
189 ($this->out->arg('location')) ? $this->out->arg('location') : $location,
190 // TRANS: Field title on group edit form.
191 _('Location for the group, if any, like "City, State (or Region), Country".'));
192 $this->out->elementEnd('li');
193 if (common_config('group', 'maxaliases') > 0) {
194 $aliases = (empty($this->group)) ? array() : $this->group->getAliases();
195 $this->out->elementStart('li');
196 // TRANS: Field label on group edit form.
197 $this->out->input('aliases', _('Aliases'),
198 ($this->out->arg('aliases')) ? $this->out->arg('aliases') :
199 (!empty($aliases)) ? implode(' ', $aliases) : '',
200 // TRANS: Input field title for group aliases.
201 // TRANS: %d is the maximum number of group aliases available.
202 sprintf(_m('Extra nicknames for the group, separated with commas or spaces. Maximum %d alias allowed.',
203 'Extra nicknames for the group, separated with commas or spaces. Maximum %d aliases allowed.',
204 common_config('group', 'maxaliases')),
205 common_config('group', 'maxaliases')));;
206 $this->out->elementEnd('li');
208 $this->out->elementStart('li');
209 // TRANS: Checkbox field label on group edit form to mark a group private.
210 $this->out->checkbox('private', _m('LABEL','Private'),
211 ($this->out->arg('private')) ? $this->out->arg('private') :
212 ((!empty($this->group)) ? $this->group->isPrivate() : false),
213 // TRANS: Checkbox field title on group edit form to mark a group private.
214 _('New members must be approved by admin and all posts are forced to be private.'));
215 $this->out->elementEnd('li');
216 Event::handle('EndGroupEditFormData', array($this));
218 $this->out->elementEnd('ul');
226 function formActions()
228 // TRANS: Text for save button on group edit form.
229 $this->out->submit('submit', _m('BUTTON','Save'));