3 * StatusNet, the distributed open-source microblogging tool
5 * Site access 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')) {
35 * Administer site access settings
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 AccessadminpanelAction extends AdminPanelAction
46 * Returns the page title
48 * @return string page title
52 // TRANS: Page title for Access admin panel that allows configuring site access.
57 * Instructions for using this form.
59 * @return string instructions
61 function getInstructions()
63 // TRANS: Page notice.
64 return _('Site access settings');
68 * Show the site admin panel form
74 $form = new AccessAdminPanelForm($this);
80 * Save settings from the form
84 function saveSettings()
86 static $booleans = array('site' => array('private', 'inviteonly', 'closed'));
88 foreach ($booleans as $section => $parts) {
89 foreach ($parts as $setting) {
90 $values[$section][$setting] = ($this->boolean($setting)) ? 1 : 0;
94 $config = new Config();
96 $config->query('BEGIN');
98 foreach ($booleans as $section => $parts) {
99 foreach ($parts as $setting) {
100 Config::save($section, $setting, $values[$section][$setting]);
104 $config->query('COMMIT');
110 class AccessAdminPanelForm extends AdminForm
115 * @return int ID of the form
119 return 'form_site_admin_panel';
125 * @return string class of the form
129 return 'form_settings';
135 * @return string URL of the action
139 return common_local_url('accessadminpanel');
143 * Data elements of the form
149 $this->out->elementStart('fieldset', array('id' => 'settings_admin_access'));
150 // TRANS: Form legend for registration form.
151 $this->out->element('legend', null, _('Registration'));
152 $this->out->elementStart('ul', 'form_data');
154 // TRANS: Checkbox instructions for admin setting "Private".
155 $instructions = _('Prohibit anonymous users (not logged in) from viewing site?');
156 // TRANS: Checkbox label for prohibiting anonymous users from viewing site.
157 $this->out->checkbox('private', _m('LABEL', 'Private'),
158 (bool) $this->value('private'),
163 // TRANS: Checkbox instructions for admin setting "Invite only".
164 $instructions = _('Make registration invitation only.');
165 // TRANS: Checkbox label for configuring site as invite only.
166 $this->out->checkbox('inviteonly', _('Invite only'),
167 (bool) $this->value('inviteonly'),
172 // TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
173 $instructions = _('Disable new registrations.');
174 // TRANS: Checkbox label for disabling new user registrations.
175 $this->out->checkbox('closed', _('Closed'),
176 (bool) $this->value('closed'),
179 $this->out->elementEnd('ul');
180 $this->out->elementEnd('fieldset');
188 function formActions()
190 // TRANS: Title for button to save access settings in site admin panel.
191 $title = _('Save access settings');
192 // TRANS: Tooltip for button to save access settings in site admin panel.
193 $this->out->submit('submit', _m('BUTTON', 'Save'), 'submit', null, $title);