123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <?php
- /**
- * ChooseTheme - GNU social plugin enabling user to select preferred theme
- * Copyright (C) 2015, kollektivet0x242.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @author Knut Erik Hollund <knut.erik@unlike.no>
- * @copyright 2015 kollektivet0x242. http://www.kollektivet0x242.no
- *
- * @license GNU Affero General Public License http://www.gnu.org/licenses/
- */
- defined('GNUSOCIAL') || die();
- class ChooseThemeSettingsAction extends SettingsAction
- {
- /**
- * Title of the page
- * @return string Page title
- * @throws Exception
- */
- public function title(): string
- {
- // TRANS: Page title.
- return _m('Choose theme settings');
- }
- /**
- * Instructions for use
- * @return string Instructions for use
- * @throws Exception
- */
- public function getInstructions(): string
- {
- // TRANS: Page instructions.
- return _m('Choose theme');
- }
- /**
- * Show the form for ChooseTheme
- * @return void
- */
- public function showContent(): void
- {
- $site_theme = common_config('site', 'theme');
- $prefs = $this->scoped->getPref('chosen_theme', 'theme', $site_theme);
- if ($prefs === null) {
- common_debug('No chosen theme found in database for user.');
- }
- //Get a list of available themes on instance
- $available_themes = Theme::listAvailable();
- $chosenone = array_search($prefs, $available_themes, true);
- $form = new ChooseThemeForm($this, $chosenone);
- $form->show();
- }
- /**
- * Handler method
- *
- * @return string
- * @throws Exception
- */
- public function doPost(): string
- {
- //Get a list of available themes on instance
- $available_themes = Theme::listAvailable();
- $chosen_theme = $available_themes[(int)$this->arg('dwct', '0')];
- $this->msg = 'Settings saved.';
- $success = $this->scoped->setPref('chosen_theme', 'theme', $chosen_theme);
- // TRANS: Confirmation shown when user profile settings are saved.
- if (!$success) {
- $this->msg = 'No valid theme chosen.';
- }
- return _m($this->msg);
- }
- }
- class ChooseThemeForm extends Form
- {
- protected $prefs = null;
- public function __construct($out, $prefs)
- {
- parent::__construct($out);
- if ($prefs != null) {
- $this->prefs = $prefs;
- } else {
- $this->prefs = common_config('site', 'theme');
- }
- }
- /**
- * Visible or invisible data elements
- *
- * Display the form fields that make up the data of the form.
- * Sub-classes should overload this to show their data.
- * @return void
- * @throws Exception
- */
- public function formData(): void
- {
- //Get a list of available themes on instance
- $available_themes = Theme::listAvailable();
- //Remove theme 'licenses' from selectable themes.
- //The 'licenses' theme is not an actual theme and
- //will just mess-up the gui.
- $key = array_search('licenses', $available_themes);
- if ($key != false) {
- unset($available_themes[$key]);
- }
- $this->elementStart('fieldset');
- $this->elementStart('ul', 'form_data');
- $this->elementStart('li');
- $this->dropdown('dwct', _m('Themes'), $available_themes, _m('Select a theme'), false, $this->prefs);
- $this->elementEnd('li');
- $this->elementEnd('ul');
- $this->elementEnd('fieldset');
- }
- /**
- * Buttons for form actions
- *
- * Submit and cancel buttons (or whatever)
- * Sub-classes should overload this to show their own buttons.
- * @return void
- */
- public function formActions(): void
- {
- $this->submit('submit', _('Save'));
- }
- /**
- * ID of the form
- *
- * Should be unique on the page. Sub-classes should overload this
- * to show their own IDs.
- * @return string ID of the form
- */
- public function id(): string
- {
- return 'form_choosetheme_prefs';
- }
- /**
- * Action of the form.
- *
- * URL to post to. Should be overloaded by subclasses to give
- * somewhere to post to.
- * @return string URL to post to
- */
- public function action(): string
- {
- return common_local_url('choosethemesettings');
- }
- /**
- * Class of the form. May include space-separated list of multiple classes.
- *
- * @return string the form's class
- */
- public function formClass(): string
- {
- return 'form_settings';
- }
- }
|