]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ChooseTheme/ChooseThemePlugin.php
bcfd5ba8a75ad70a75786b6885ab579b890a7ecd
[quix0rs-gnu-social.git] / plugins / ChooseTheme / ChooseThemePlugin.php
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
25 class ChooseThemePlugin extends Plugin {
26     const PLUGIN_VERSION = '0.1.0';
27
28     public function onRouterInitialized(URLMapper $m) {
29         $m->connect('main/choosethemesettings', ['action' => 'choosethemesettings']);
30     }
31
32     public function onPluginVersion(array &$versions) {
33                 
34         $versions[] = array('name' => 'ChooseTheme',
35                             'version' => self::PLUGIN_VERSION,
36                             'author' => 'Knut Erik "abjectio" Hollund',
37                             'homepage' => 'https://gitlab.com/kollektivet0x242/gsp-choosetheme',
38                             'rawdescription' =>
39                             // TRANS: Plugin description.
40                             _m('Allowing user to select the preferred theme.'));
41         return true;
42     }
43     
44     /**
45      * Menu item for ChooseTheme
46      *
47      * @param Action $action action being executed
48      *
49      * @return boolean hook return
50      */
51     function onEndAccountSettingsNav(Action $action) {
52         $action_name = $action->getActionName();
53
54         $action->menuItem(common_local_url('choosethemesettings'),
55                           // TRANS: Poll plugin menu item on user settings page.
56                           _m('MENU', 'Theme'),
57                           // TRANS: Poll plugin tooltip for user settings menu item.
58                           _m('Choose Theme'),
59                           $action_name === 'themesettings');
60
61         return true;
62     }
63
64
65     function onStartShowStylesheets(Action $action) {
66
67                 //get the theme and set the current config for site and theme.
68                 if($action->getScoped() instanceof Profile) {
69                         $site_theme = common_config('site','theme');
70                         $user_theme = $action->getScoped()->getPref('chosen_theme', 'theme', $site_theme);
71                         common_config_set('site', 'theme', $user_theme);
72                 }               
73                 return true;
74         }
75 }