3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010,2011, StatusNet, Inc.
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2010,2011 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
38 * A widget for showing the settings group local nav menu
42 * @author Evan Prodromou <evan@status.net>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://status.net/
48 class SettingsNav extends Menu
57 $actionName = $this->action->trimmed('action');
58 $user = common_current_user();
59 $nickname = $user->nickname;
60 $name = $user->getProfile()->getBestName();
62 // Stub section w/ home link
63 $this->action->elementStart('ul');
64 $this->action->elementStart('li');
65 // TRANS: Header in settings navigation panel.
66 $this->action->element('h3', null, _m('HEADER','Home'));
67 $this->action->elementStart('ul', 'nav');
68 $this->out->menuItem(common_local_url('all', array('nickname' =>
70 // TRANS: Menu item in settings navigation panel.
72 // TRANS: Menu item title in settings navigation panel.
73 // TRANS: %s is a username.
74 sprintf(_('%s and friends'), $name),
75 $this->action == 'all', 'nav_timeline_personal');
76 $this->action->elementEnd('ul');
77 $this->action->elementEnd('li');
78 $this->action->elementEnd('ul');
80 $this->action->elementStart('ul');
81 $this->action->elementStart('li');
82 // TRANS: Header in settings navigation panel.
83 $this->action->element('h3', null, _m('HEADER','Settings'));
84 $this->action->elementStart('ul', array('class' => 'nav'));
86 if (Event::handle('StartAccountSettingsNav', array(&$this->action))) {
87 $this->action->menuItem(common_local_url('profilesettings'),
88 // TRANS: Menu item in settings navigation panel.
90 // TRANS: Menu item title in settings navigation panel.
91 _('Change your profile settings'),
92 $actionName == 'profilesettings');
94 $this->action->menuItem(common_local_url('avatarsettings'),
95 // TRANS: Menu item in settings navigation panel.
97 // TRANS: Menu item title in settings navigation panel.
98 _('Upload an avatar'),
99 $actionName == 'avatarsettings');
101 $this->action->menuItem(common_local_url('passwordsettings'),
102 // TRANS: Menu item in settings navigation panel.
103 _m('MENU','Password'),
104 // TRANS: Menu item title in settings navigation panel.
105 _('Change your password'),
106 $actionName == 'passwordsettings');
108 $this->action->menuItem(common_local_url('emailsettings'),
109 // TRANS: Menu item in settings navigation panel.
111 // TRANS: Menu item title in settings navigation panel.
112 _('Change email handling'),
113 $actionName == 'emailsettings');
115 $this->action->menuItem(common_local_url('urlsettings'),
116 // TRANS: Menu item in settings navigation panel.
118 // TRANS: Menu item title in settings navigation panel.
120 $actionName == 'urlsettings');
122 Event::handle('EndAccountSettingsNav', array(&$this->action));
124 if (common_config('xmpp', 'enabled')) {
125 $this->action->menuItem(common_local_url('imsettings'),
126 // TRANS: Menu item in settings navigation panel.
128 // TRANS: Menu item title in settings navigation panel.
129 _('Updates by instant messenger (IM)'),
130 $actionName == 'imsettings');
133 if (common_config('sms', 'enabled')) {
134 $this->action->menuItem(common_local_url('smssettings'),
135 // TRANS: Menu item in settings navigation panel.
137 // TRANS: Menu item title in settings navigation panel.
139 $actionName == 'smssettings');
142 $this->action->menuItem(common_local_url('oauthconnectionssettings'),
143 // TRANS: Menu item in settings navigation panel.
144 _m('MENU','Connections'),
145 // TRANS: Menu item title in settings navigation panel.
146 _('Authorized connected applications'),
147 $actionName == 'oauthconnectionsettings');
149 Event::handle('EndConnectSettingsNav', array(&$this->action));
152 $this->action->elementEnd('ul');
153 $this->action->elementEnd('li');
154 $this->action->elementEnd('ul');