3 * StatusNet, the distributed open-source microblogging tool
5 * Base class for account settings actions
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.
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.
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/>.
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/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR.'/lib/settingsaction.php';
37 * Base class for account settings actions
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/
47 class AccountSettingsAction extends SettingsAction
50 * Show the local navigation menu
52 * This is the same for all settings, so we show it here.
56 function showLocalNav()
58 $menu = new AccountSettingsNav($this);
64 * A widget for showing the settings group local nav menu
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/
74 class AccountSettingsNav extends Widget
81 * @param Action $action current action, used for output
83 function __construct($action=null)
85 parent::__construct($action);
86 $this->action = $action;
96 $action_name = $this->action->trimmed('action');
97 $this->action->elementStart('ul', array('class' => 'nav'));
99 if (Event::handle('StartAccountSettingsNav', array(&$this->action))) {
100 $user = common_current_user();
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));
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));
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));
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));
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));
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));
145 Event::handle('EndAccountSettingsNav', array(&$this->action));
148 $this->action->elementEnd('ul');
151 function showMenuItem($menuaction, $desc1, $desc2)
153 $action_name = $this->action->trimmed('action');
154 $this->action->menuItem(common_local_url($menuaction),
157 $action_name === $menuaction);