ChooseThemePlugin.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /**
  3. * ChooseTheme - GNU social plugin enabling user to select a preferred theme
  4. * Copyright (C) 2015, kollektivet0x242.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * @author Knut Erik Hollund <knut.erik@unlike.no>
  20. * @copyright 2015 kollektivet0x242. http://www.kollektivet0x242.no
  21. *
  22. * @license GNU Affero General Public License http://www.gnu.org/licenses/
  23. */
  24. class ChooseThemePlugin extends Plugin {
  25. const PLUGIN_VERSION = '0.1.0';
  26. public function onRouterInitialized(URLMapper $m) {
  27. $m->connect('main/choosethemesettings', ['action' => 'choosethemesettings']);
  28. }
  29. public function onPluginVersion(array &$versions) {
  30. $versions[] = array('name' => 'ChooseTheme',
  31. 'version' => self::PLUGIN_VERSION,
  32. 'author' => 'Knut Erik "abjectio" Hollund',
  33. 'homepage' => 'https://gitlab.com/kollektivet0x242/gsp-choosetheme',
  34. 'rawdescription' =>
  35. // TRANS: Plugin description.
  36. _m('Allowing user to select the preferred theme.'));
  37. return true;
  38. }
  39. /**
  40. * Menu item for ChooseTheme
  41. *
  42. * @param Action $action action being executed
  43. *
  44. * @return boolean hook return
  45. */
  46. function onEndAccountSettingsNav(Action $action) {
  47. $action_name = $action->getActionName();
  48. $action->menuItem(common_local_url('choosethemesettings'),
  49. // TRANS: Poll plugin menu item on user settings page.
  50. _m('MENU', 'Theme'),
  51. // TRANS: Poll plugin tooltip for user settings menu item.
  52. _m('Choose Theme'),
  53. $action_name === 'themesettings');
  54. return true;
  55. }
  56. function onStartShowStylesheets(Action $action) {
  57. //get the theme and set the current config for site and theme.
  58. if($action->getScoped() instanceof Profile) {
  59. $site_theme = common_config('site','theme');
  60. $user_theme = $action->getScoped()->getPref('chosen_theme', 'theme', $site_theme);
  61. common_config_set('site', 'theme', $user_theme);
  62. }
  63. return true;
  64. }
  65. }