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
50 class GroupEditForm extends Form
53 * group for user to join
61 * @param Action $out output channel
62 * @param User_group $group group to join
65 function __construct($out=null, $group=null)
67 parent::__construct($out);
69 $this->group = $group;
75 * @return string ID of the form
81 return 'form_group_edit-' . $this->group->id;
83 return 'form_group_add';
90 * @return string of the form class
95 return 'form_settings';
101 * @return string URL of the action
107 return common_local_url('editgroup',
108 array('nickname' => $this->group->nickname));
110 return common_local_url('newgroup');
120 function formLegend()
122 $this->out->element('legend', null, _('Create a new group'));
126 * Data elements of the form
134 $id = $this->group->id;
135 $nickname = $this->group->nickname;
136 $fullname = $this->group->fullname;
137 $homepage = $this->group->homepage;
138 $description = $this->group->description;
139 $location = $this->group->location;
149 $this->out->elementStart('ul', 'form_data');
150 $this->out->elementStart('li');
151 $this->out->hidden('groupid', $id);
152 $this->out->input('nickname', _('Nickname'),
153 ($this->out->arg('nickname')) ? $this->out->arg('nickname') : $nickname,
154 _('1-64 lowercase letters or numbers, no punctuation or spaces'));
155 $this->out->elementEnd('li');
156 $this->out->elementStart('li');
157 $this->out->input('fullname', _('Full name'),
158 ($this->out->arg('fullname')) ? $this->out->arg('fullname') : $fullname);
159 $this->out->elementEnd('li');
160 $this->out->elementStart('li');
161 $this->out->input('homepage', _('Homepage'),
162 ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage,
163 _('URL of the homepage or blog of the group or topic'));
164 $this->out->elementEnd('li');
165 $this->out->elementStart('li');
166 $desclimit = User_group::maxDescription();
167 if ($desclimit == 0) {
168 $descinstr = _('Describe the group or topic');
170 $descinstr = sprintf(_('Describe the group or topic in %d characters'), $desclimit);
172 $this->out->textarea('description', _('Description'),
173 ($this->out->arg('description')) ? $this->out->arg('description') : $description,
175 $this->out->elementEnd('li');
176 $this->out->elementStart('li');
177 $this->out->input('location', _('Location'),
178 ($this->out->arg('location')) ? $this->out->arg('location') : $location,
179 _('Location for the group, if any, like "City, State (or Region), Country"'));
180 $this->out->elementEnd('li');
181 if (common_config('group', 'maxaliases') > 0) {
182 $aliases = (empty($this->group)) ? array() : $this->group->getAliases();
183 $this->out->elementStart('li');
184 $this->out->input('aliases', _('Aliases'),
185 ($this->out->arg('aliases')) ? $this->out->arg('aliases') :
186 (!empty($aliases)) ? implode(' ', $aliases) : '',
187 sprintf(_('Extra nicknames for the group, comma- or space- separated, max %d'),
188 common_config('group', 'maxaliases')));;
189 $this->out->elementEnd('li');
191 $this->out->elementEnd('ul');
200 function formActions()
202 $this->out->submit('submit', _('Save'));