3 * StatusNet, the distributed open-source microblogging tool
5 * Base class for connection 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 connection 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 ConnectSettingsAction 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 ConnectSettingsNav($this);
64 * A widget for showing the connect 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 ConnectSettingsNav 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('StartConnectSettingsNav', array(&$this->action))) {
101 # action => array('prompt', 'title')
103 $transports = array();
104 Event::handle('GetImTransports', array(&$transports));
106 $menu['imsettings'] =
107 // TRANS: Menu item for Instant Messaging settings.
108 array(_m('MENU','IM'),
109 // TRANS: Tooltip for Instant Messaging menu item.
110 _('Updates by instant messenger (IM)'));
112 if (common_config('sms', 'enabled')) {
113 $menu['smssettings'] =
114 // TRANS: Menu item for Short Message Service settings.
115 array(_m('MENU','SMS'),
116 // TRANS: Tooltip for Short Message Service menu item.
117 _('Updates by SMS'));
120 $menu['oauthconnectionssettings'] = array(
121 // TRANS: Menu item for OuAth connection settings.
122 _m('MENU','Connections'),
123 // TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
124 _('Authorized connected applications')
127 foreach ($menu as $menuaction => $menudesc) {
128 $this->action->menuItem(common_local_url($menuaction),
131 $action_name === $menuaction);
134 Event::handle('EndConnectSettingsNav', array(&$this->action));
137 $this->action->elementEnd('ul');