]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - _darcs/pristine/lib/settingsaction.php
62de39d4593875fe763a42c8d5f0c26f2e57b500
[quix0rs-gnu-social.git] / _darcs / pristine / 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                 common_show_header($title,
65                                    NULL,
66                                    array($msg, $success),
67                                                    array($this, 'show_top'));
68         }
69
70     function show_top($arr)
71     {
72         $msg = $arr[0];
73         $success = $arr[1];
74         if ($msg) {
75             $this->message($msg, $success);
76         } else {
77             $inst = $this->get_instructions();
78             $output = common_markup_to_html($inst);
79             common_element_start('div', 'instructions');
80             common_raw($output);
81             common_element_end('div');
82         }
83         $this->settings_menu();
84     }
85
86     function settings_menu()
87     {
88         # action => array('prompt', 'title')
89         $menu =
90           array('profilesettings' =>
91                 array(_('Profile'),
92                       _('Change your profile settings')),
93                 'emailsettings' =>
94                 array(_('Email'),
95                       _('Change email handling')),
96                 'openidsettings' =>
97                 array(_('OpenID'),
98                       _('Add or remove OpenIDs')),
99                 'smssettings' =>
100                 array(_('SMS'),
101                       _('Updates by SMS')),
102                 'imsettings' =>
103                 array(_('IM'),
104                       _('Updates by instant messenger (IM)')),
105                 'twittersettings' =>
106                 array(_('Twitter'),
107                       _('Twitter integration options')),
108                 'othersettings' =>
109                 array(_('Other'),
110                       _('Other options')));
111         
112         $action = $this->trimmed('action');
113         common_element_start('ul', array('id' => 'nav_views'));
114         foreach ($menu as $menuaction => $menudesc) {
115             if ($menuaction == 'imsettings' &&
116                 !common_config('xmpp', 'enabled')) {
117                 continue;
118             }
119             common_menu_item(common_local_url($menuaction),
120                     $menudesc[0],
121                     $menudesc[1],
122                     $action == $menuaction);
123         }
124         common_element_end('ul');
125     }
126 }