123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <?php
- defined('GNUSOCIAL') || die();
- class AccessadminpanelAction extends AdminPanelAction
- {
-
- public function title()
- {
-
- return _('Access');
- }
-
- public function getInstructions()
- {
-
- return _('Site access settings');
- }
-
- public function showForm()
- {
- $form = new AccessAdminPanelForm($this);
- $form->show();
- return;
- }
-
- public function saveSettings()
- {
- static $booleans = array('site' => array('private', 'inviteonly', 'closed'),
- 'public' => array('localonly'));
- foreach ($booleans as $section => $parts) {
- foreach ($parts as $setting) {
- $values[$section][$setting] = ($this->boolean($setting)) ? 1 : 0;
- }
- }
- $config = new Config();
- $config->query('START TRANSACTION');
- foreach ($booleans as $section => $parts) {
- foreach ($parts as $setting) {
- Config::save($section, $setting, $values[$section][$setting]);
- }
- }
- $config->query('COMMIT');
- return;
- }
- }
- class AccessAdminPanelForm extends AdminForm
- {
-
- public function id()
- {
- return 'form_site_admin_panel';
- }
-
- public function formClass()
- {
- return 'form_settings';
- }
-
- public function action()
- {
- return common_local_url('accessadminpanel');
- }
-
- public function formData()
- {
- $this->out->elementStart('fieldset', array('id' => 'settings_admin_account_access'));
-
- $this->out->element('legend', null, _('Registration'));
- $this->out->elementStart('ul', 'form_data');
- $this->li();
-
- $instructions = _('Make registration invitation only.');
-
- $this->out->checkbox(
- 'inviteonly',
- _('Invite only'),
- (bool) $this->value('inviteonly'),
- $instructions
- );
- $this->unli();
- $this->li();
-
- $instructions = _('Disable new registrations.');
-
- $this->out->checkbox(
- 'closed',
- _('Closed'),
- (bool) $this->value('closed'),
- $instructions
- );
- $this->unli();
- $this->out->elementEnd('ul');
- $this->out->elementEnd('fieldset');
-
- $this->out->elementStart('fieldset', ['id' => 'settings_admin_public_access']);
-
- $this->out->element('legend', null, _('Feed access'));
- $this->out->elementStart('ul', 'form_data');
- $this->li();
-
- $instructions = _('Prohibit anonymous users (not logged in) from viewing site?');
-
- $this->out->checkbox(
- 'private',
- _m('LABEL', 'Private'),
- (bool) $this->value('private'),
- $instructions
- );
- $this->unli();
- $this->li();
-
- $instructions = _('The full network view includes (public) remote notices which may be unrelated to local conversations.');
-
- $this->out->checkbox(
- 'localonly',
- _('Restrict full network view to accounts'),
- (bool) $this->value('localonly', 'public'),
- $instructions
- );
- $this->unli();
- $this->out->elementEnd('ul');
- $this->out->elementEnd('fieldset');
- }
-
- public function formActions()
- {
-
- $title = _('Save access settings.');
-
- $this->out->submit('submit', _m('BUTTON', 'Save'), 'submit', null, $title);
- }
- }
|