]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/settingsaction.php
Fix a couple of errors in PublicGroupNav
[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                            array($this, 'show_header'),
67                            array($msg, $success),
68                            array($this, 'show_top'));
69     }
70
71     function show_header() 
72     {
73         common_element('link', array('rel' => 'stylesheet',
74                                      'type' => 'text/css',
75                                      'href' => common_path('js/jcrop/jquery.Jcrop.css?version='.LACONICA_VERSION),
76                                      'media' => 'screen, projection, tv'));
77         common_element('script', array('type' => 'text/javascript',
78                                        'src' => common_path('js/jcrop/jquery.Jcrop.pack.js')));
79         common_element('script', array('type' => 'text/javascript',
80                                        'src' => common_path('js/jcrop/jquery.Jcrop.go.js')));
81     }
82
83     function show_top($arr)
84     {
85         $msg = $arr[0];
86         $success = $arr[1];
87         if ($msg) {
88             $this->message($msg, $success);
89         } else {
90             $inst = $this->get_instructions();
91             $output = common_markup_to_html($inst);
92             common_element_start('div', 'instructions');
93             common_raw($output);
94             common_element_end('div');
95         }
96         $this->settings_menu();
97     }
98
99     function settings_menu()
100     {
101         # action => array('prompt', 'title')
102         $menu =
103           array('profilesettings' =>
104                 array(_('Profile'),
105                       _('Change your profile settings')),
106                 'emailsettings' =>
107                 array(_('Email'),
108                       _('Change email handling')),
109                 'openidsettings' =>
110                 array(_('OpenID'),
111                       _('Add or remove OpenIDs')),
112                 'smssettings' =>
113                 array(_('SMS'),
114                       _('Updates by SMS')),
115                 'imsettings' =>
116                 array(_('IM'),
117                       _('Updates by instant messenger (IM)')),
118                 'twittersettings' =>
119                 array(_('Twitter'),
120                       _('Twitter integration options')),
121                 'othersettings' =>
122                 array(_('Other'),
123                       _('Other options')));
124         
125         $action = $this->trimmed('action');
126         common_element_start('ul', array('id' => 'nav_views'));
127         foreach ($menu as $menuaction => $menudesc) {
128             if ($menuaction == 'imsettings' &&
129                 !common_config('xmpp', 'enabled')) {
130                 continue;
131             }
132             common_menu_item(common_local_url($menuaction),
133                     $menudesc[0],
134                     $menudesc[1],
135                     $action == $menuaction);
136         }
137         common_element_end('ul');
138     }
139 }