]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/groupeditform.php
On XHR notice post, calls NoticeAttachment to trigger thumbnail and
[quix0rs-gnu-social.git] / lib / groupeditform.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Form for editing a group
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Form
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Sarven Capadisli <csarven@controlyourself.ca>
26  * @copyright 2009 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/form.php';
36
37 /**
38  * Form for editing a group
39  *
40  * @category Form
41  * @package  Laconica
42  * @author   Evan Prodromou <evan@controlyourself.ca>
43  * @author   Sarven Capadisli <csarven@controlyourself.ca>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://laconi.ca/
46  *
47  * @see      UnsubscribeForm
48  */
49
50 class GroupEditForm extends Form
51 {
52     /**
53      * group for user to join
54      */
55
56     var $group = null;
57
58     /**
59      * Constructor
60      *
61      * @param Action     $out   output channel
62      * @param User_group $group group to join
63      */
64
65     function __construct($out=null, $group=null)
66     {
67         parent::__construct($out);
68
69         $this->group = $group;
70     }
71
72     /**
73      * ID of the form
74      *
75      * @return string ID of the form
76      */
77
78     function id()
79     {
80         if ($this->group) {
81             return 'form_group_edit-' . $this->group->id;
82         } else {
83             return 'form_group_add';
84         }
85     }
86
87     /**
88      * class of the form
89      *
90      * @return string of the form class
91      */
92
93     function formClass()
94     {
95         return 'form_settings';
96     }
97
98     /**
99      * Action of the form
100      *
101      * @return string URL of the action
102      */
103
104     function action()
105     {
106         if ($this->group) {
107             return common_local_url('editgroup',
108                                     array('nickname' => $this->group->nickname));
109         } else {
110             return common_local_url('newgroup');
111         }
112     }
113
114     /**
115      * Name of the form
116      *
117      * @return void
118      */
119
120     function formLegend()
121     {
122         $this->out->element('legend', null, _('Create a new group'));
123     }
124
125     /**
126      * Data elements of the form
127      *
128      * @return void
129      */
130
131     function formData()
132     {
133         $this->out->elementStart('ul', 'form_data');
134         $this->out->elementStart('li');
135         $this->out->hidden('groupid', $this->group->id);
136         $this->out->input('nickname', _('Nickname'),
137                      ($this->out->arg('nickname')) ? $this->out->arg('nickname') : $this->group->nickname,
138                      _('1-64 lowercase letters or numbers, no punctuation or spaces'));
139         $this->out->elementEnd('li');
140         $this->out->elementStart('li');
141         $this->out->input('fullname', _('Full name'),
142                      ($this->out->arg('fullname')) ? $this->out->arg('fullname') : $this->group->fullname);
143         $this->out->elementEnd('li');
144         $this->out->elementStart('li');
145         $this->out->input('homepage', _('Homepage'),
146                      ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $this->group->homepage,
147                      _('URL of the homepage or blog of the group or topic'));
148         $this->out->elementEnd('li');
149         $this->out->elementStart('li');
150         $this->out->textarea('description', _('Description'),
151                         ($this->out->arg('description')) ? $this->out->arg('description') : $this->group->description,
152                         _('Describe the group or topic in 140 chars'));
153         $this->out->elementEnd('li');
154         $this->out->elementStart('li');
155         $this->out->input('location', _('Location'),
156                      ($this->out->arg('location')) ? $this->out->arg('location') : $this->group->location,
157                      _('Location for the group, if any, like "City, State (or Region), Country"'));
158         $this->out->elementEnd('li');
159         if (common_config('group', 'maxaliases') > 0) {
160             $aliases = (empty($this->group)) ? array() : $this->group->getAliases();
161             $this->out->elementStart('li');
162             $this->out->input('aliases', _('Aliases'),
163                               ($this->out->arg('aliases')) ? $this->out->arg('aliases') :
164                               (!empty($aliases)) ? implode(' ', $aliases) : '',
165                               sprintf(_('Extra nicknames for the group, comma- or space- separated, max %d'),
166                                       common_config('group', 'maxaliases')));;
167             $this->out->elementEnd('li');
168         }
169         $this->out->elementEnd('ul');
170     }
171
172     /**
173      * Action elements
174      *
175      * @return void
176      */
177
178     function formActions()
179     {
180         $this->out->submit('submit', _('Save'));
181     }
182 }