3 * StatusNet, the distributed open-source microblogging tool
5 * Sessions administration panel
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 2010 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')) {
39 * @author Zach Copley <zach@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
43 class SessionsadminpanelAction extends AdminPanelAction
46 * Returns the page title
48 * @return string page title
52 // TRANS: Title for the sessions administration panel.
53 return _m('TITLE','Sessions');
57 * Instructions for using this form.
59 * @return string instructions
61 function getInstructions()
63 // TRANS: Instructions for the sessions administration panel.
64 return _('Session settings for this StatusNet site');
68 * Show the site admin panel form
74 $form = new SessionsAdminPanelForm($this);
80 * Save settings from the form
84 function saveSettings()
86 static $booleans = array('sessions' => array('handle', 'debug'));
90 foreach ($booleans as $section => $parts) {
91 foreach ($parts as $setting) {
92 $values[$section][$setting] = ($this->boolean($setting)) ? 1 : 0;
96 // This throws an exception on validation errors
98 $this->validate($values);
100 // assert(all values are valid);
102 $config = new Config();
104 $config->query('BEGIN');
106 foreach ($booleans as $section => $parts) {
107 foreach ($parts as $setting) {
108 Config::save($section, $setting, $values[$section][$setting]);
112 $config->query('COMMIT');
117 function validate(&$values)
123 // @todo FIXME: Class documentation missing.
124 class SessionsAdminPanelForm extends AdminForm
129 * @return int ID of the form
133 return 'sessionsadminpanel';
139 * @return string class of the form
143 return 'form_settings';
149 * @return string URL of the action
153 return common_local_url('sessionsadminpanel');
157 * Data elements of the form
163 $this->out->elementStart('fieldset', array('id' => 'settings_user_sessions'));
164 // TRANS: Fieldset legend on the sessions administration panel.
165 $this->out->element('legend', null, _m('LEGEND','Sessions'));
167 $this->out->elementStart('ul', 'form_data');
170 // TRANS: Checkbox title on the sessions administration panel.
171 // TRANS: Indicates if StatusNet should handle session administration.
172 $this->out->checkbox('handle', _('Handle sessions'),
173 (bool) $this->value('handle', 'sessions'),
174 // TRANS: Checkbox title on the sessions administration panel.
175 // TRANS: Indicates if StatusNet should handle session administration.
176 _('Handle sessions ourselves.'));
180 // TRANS: Checkbox label on the sessions administration panel.
181 // TRANS: Indicates if StatusNet should write session debugging output.
182 $this->out->checkbox('debug', _('Session debugging'),
183 (bool) $this->value('debug', 'sessions'),
184 // TRANS: Checkbox title on the sessions administration panel.
185 _('Enable debugging output for sessions.'));
188 $this->out->elementEnd('ul');
190 $this->out->elementEnd('fieldset');
198 function formActions()
200 $this->out->submit('submit',
201 // TRANS: Submit button text on the sessions administration panel.
205 // TRANS: Title for submit button on the sessions administration panel.
206 _('Save session settings'));