]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/accountsettingsaction.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / lib / accountsettingsaction.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Base class for account settings actions
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Settings
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-2009 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/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/settingsaction.php';
35
36 /**
37  * Base class for account settings actions
38  *
39  * @category Settings
40  * @package  StatusNet
41  * @author   Evan Prodromou <evan@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  *
45  * @see      Widget
46  */
47 class AccountSettingsAction extends SettingsAction
48 {
49     /**
50      * Show the local navigation menu
51      *
52      * This is the same for all settings, so we show it here.
53      *
54      * @return void
55      */
56     function showLocalNav()
57     {
58         $menu = new AccountSettingsNav($this);
59         $menu->show();
60     }
61 }
62
63 /**
64  * A widget for showing the settings group local nav menu
65  *
66  * @category Widget
67  * @package  StatusNet
68  * @author   Evan Prodromou <evan@status.net>
69  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
70  * @link     http://status.net/
71  *
72  * @see      HTMLOutputter
73  */
74 class AccountSettingsNav extends Widget
75 {
76     var $action = null;
77
78     /**
79      * Construction
80      *
81      * @param Action $action current action, used for output
82      */
83     function __construct($action=null)
84     {
85         parent::__construct($action);
86         $this->action = $action;
87     }
88
89     /**
90      * Show the menu
91      *
92      * @return void
93      */
94     function show()
95     {
96         $action_name = $this->action->trimmed('action');
97         $this->action->elementStart('ul', array('class' => 'nav'));
98
99         if (Event::handle('StartAccountSettingsNav', array(&$this->action))) {
100             $user = common_current_user();
101
102             if(Event::handle('StartAccountSettingsProfileMenuItem', array($this, &$menu))){
103                 // TRANS: Link title attribute in user account settings menu.
104                 $title = _('Change your profile settings');
105                 // TRANS: Link description in user account settings menu.
106                 $this->showMenuItem('profilesettings',_('Profile'),$title);
107                 Event::handle('EndAccountSettingsProfileMenuItem', array($this, &$menu));
108             }
109             if(Event::handle('StartAccountSettingsAvatarMenuItem', array($this, &$menu))){
110                 // TRANS: Link title attribute in user account settings menu.
111                 $title = _('Upload an avatar');
112                 // TRANS: Link description in user account settings menu.
113                 $this->showMenuItem('avatarsettings',_('Avatar'),$title);
114                 Event::handle('EndAccountSettingsAvatarMenuItem', array($this, &$menu));
115             }
116             if(Event::handle('StartAccountSettingsPasswordMenuItem', array($this, &$menu))){
117                 // TRANS: Link title attribute in user account settings menu.
118                 $title = _('Change your password');
119                 // TRANS: Link description in user account settings menu.
120                 $this->showMenuItem('passwordsettings',_('Password'),$title);
121                 Event::handle('EndAccountSettingsPasswordMenuItem', array($this, &$menu));
122             }
123             if(Event::handle('StartAccountSettingsEmailMenuItem', array($this, &$menu))){
124                 // TRANS: Link title attribute in user account settings menu.
125                 $title = _('Change email handling');
126                 // TRANS: Link description in user account settings menu.
127                 $this->showMenuItem('emailsettings',_('Email'),$title);
128                 Event::handle('EndAccountSettingsEmailMenuItem', array($this, &$menu));
129             }
130             if(Event::handle('StartAccountSettingsDesignMenuItem', array($this, &$menu))){
131                 // TRANS: Link title attribute in user account settings menu.
132                 $title = _('Design your profile');
133                 // TRANS: Link description in user account settings menu.
134                 $this->showMenuItem('userdesignsettings',_('Design'),$title);
135                 Event::handle('EndAccountSettingsDesignMenuItem', array($this, &$menu));
136             }
137             if(Event::handle('StartAccountSettingsOtherMenuItem', array($this, &$menu))){
138                 // TRANS: Link title attribute in user account settings menu.
139                 $title = _('Other options');
140                 // TRANS: Link description in user account settings menu.
141                 $this->showMenuItem('othersettings',_('Other'),$title);
142                 Event::handle('EndAccountSettingsOtherMenuItem', array($this, &$menu));
143             }
144
145             Event::handle('EndAccountSettingsNav', array(&$this->action));
146         }
147
148         $this->action->elementEnd('ul');
149     }
150
151     function showMenuItem($menuaction, $desc1, $desc2)
152     {
153         $action_name = $this->action->trimmed('action');
154         $this->action->menuItem(common_local_url($menuaction),
155             $desc1,
156             $desc2,
157             $action_name === $menuaction);
158     }
159 }