]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/connectsettingsaction.php
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.x
[quix0rs-gnu-social.git] / lib / connectsettingsaction.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Base class for connection 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 connection 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 ConnectSettingsAction 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 ConnectSettingsNav($this);
59         $menu->show();
60     }
61 }
62
63 /**
64  * A widget for showing the connect 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 ConnectSettingsNav 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('StartConnectSettingsNav', array(&$this->action))) {
100
101             # action => array('prompt', 'title')
102             $menu = array();
103             $transports = array();
104             Event::handle('GetImTransports', array(&$transports));
105             if ($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)'));
111             }
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'));
118             }
119
120             $menu['oauthconnectionssettings'] = array(
121                 // TRANS: Menu item for OAth connection settings.
122                 _m('MENU','Connections'),
123                 // TRANS: Tooltip for connected applications (Connections through OAth) menu item.
124                 _('Authorized connected applications')
125             );
126
127             foreach ($menu as $menuaction => $menudesc) {
128                 $this->action->menuItem(common_local_url($menuaction),
129                         $menudesc[0],
130                         $menudesc[1],
131                         $action_name === $menuaction);
132             }
133
134             Event::handle('EndConnectSettingsNav', array(&$this->action));
135         }
136
137         $this->action->elementEnd('ul');
138     }
139 }