]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/settingsaction.php
move opening brace of class declaration to next line
[quix0rs-gnu-social.git] / lib / settingsaction.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 class SettingsAction extends Action
23 {
24
25     function handle($args)
26     {
27         parent::handle($args);
28         if (!common_logged_in()) {
29             common_user_error(_('Not logged in.'));
30             return;
31         } else if (!common_is_real_login()) {
32             # Cookie theft means that automatic logins can't
33             # change important settings or see private info, and
34             # _all_ our settings are important
35             common_set_returnto($this->self_url());
36             common_redirect(common_local_url('login'));
37         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
38             $this->handle_post();
39         } else {
40             $this->show_form();
41         }
42     }
43
44     # override!
45     function handle_post()
46     {
47         return false;
48     }
49
50     function show_form($msg=null, $success=false)
51     {
52         return false;
53     }
54
55     function message($msg, $success)
56     {
57         if ($msg) {
58             common_element('div', ($success) ? 'success' : 'error',
59                            $msg);
60         }
61     }
62
63     function form_header($title, $msg=null, $success=false)
64     {
65         common_show_header($title,
66                            null,
67                            array($msg, $success),
68                            array($this, 'show_top'));
69     }
70
71     function show_top($arr)
72     {
73         $msg = $arr[0];
74         $success = $arr[1];
75         if ($msg) {
76             $this->message($msg, $success);
77         } else {
78             $inst = $this->get_instructions();
79             $output = common_markup_to_html($inst);
80             common_element_start('div', 'instructions');
81             common_raw($output);
82             common_element_end('div');
83         }
84         $this->settings_menu();
85     }
86
87     function settings_menu()
88     {
89         # action => array('prompt', 'title')
90         $menu =
91           array('profilesettings' =>
92                 array(_('Profile'),
93                       _('Change your profile settings')),
94                 'emailsettings' =>
95                 array(_('Email'),
96                       _('Change email handling')),
97                 'openidsettings' =>
98                 array(_('OpenID'),
99                       _('Add or remove OpenIDs')),
100                 'smssettings' =>
101                 array(_('SMS'),
102                       _('Updates by SMS')),
103                 'imsettings' =>
104                 array(_('IM'),
105                       _('Updates by instant messenger (IM)')),
106                 'twittersettings' =>
107                 array(_('Twitter'),
108                       _('Twitter integration options')),
109                 'othersettings' =>
110                 array(_('Other'),
111                       _('Other options')));
112         
113         $action = $this->trimmed('action');
114         common_element_start('ul', array('id' => 'nav_views'));
115         foreach ($menu as $menuaction => $menudesc) {
116             if ($menuaction == 'imsettings' &&
117                 !common_config('xmpp', 'enabled')) {
118                 continue;
119             }
120             common_menu_item(common_local_url($menuaction),
121                     $menudesc[0],
122                     $menudesc[1],
123                     $action == $menuaction);
124         }
125         common_element_end('ul');
126     }
127 }