2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * User preferences management page
10 * Gets some core libraries and displays a top message if required
12 require_once './libraries/common.inc.php';
13 require_once './libraries/user_preferences.lib.php';
14 require_once './libraries/config/config_functions.lib.php';
15 require_once './libraries/config/messages.inc.php';
16 require_once './libraries/config/ConfigFile.class.php';
17 require_once './libraries/config/Form.class.php';
18 require_once './libraries/config/FormDisplay.class.php';
19 require './libraries/config/user_preferences.forms.php';
21 PMA_userprefs_pageinit();
24 if (isset($_POST['submit_export']) && filter_input(INPUT_POST
, 'export_type') == 'text_file') {
25 // export to JSON file
26 $filename = 'phpMyAdmin-config-' . urlencode(PMA_getenv('HTTP_HOST')) . '.json';
27 PMA_download_header($filename, 'application/json');
28 $settings = PMA_load_userprefs();
29 echo json_encode($settings['config_data']);
31 } else if (isset($_POST['submit_get_json'])) {
32 $settings = PMA_load_userprefs();
33 header('Content-Type: application/json');
34 echo json_encode(array(
35 'prefs' => json_encode($settings['config_data']),
36 'mtime' => $settings['mtime']));
38 } else if (isset($_POST['submit_import'])) {
39 // load from JSON file
41 if (filter_input(INPUT_POST
, 'import_type') == 'text_file'
42 && isset($_FILES['import_file'])
43 && $_FILES['import_file']['error'] == UPLOAD_ERR_OK
44 && is_uploaded_file($_FILES['import_file']['tmp_name'])) {
45 // read JSON from uploaded file
46 $open_basedir = @ini_get
('open_basedir');
48 $import_file = $_FILES['import_file']['tmp_name'];
50 // If we are on a server with open_basedir, we must move the file
51 // before opening it. The doc explains how to create the "./tmp"
53 if (!empty($open_basedir)) {
54 $tmp_subdir = (PMA_IS_WINDOWS ?
'.\\tmp\\' : './tmp/');
55 if (is_writable($tmp_subdir)) {
56 $import_file_new = tempnam($tmp_subdir, 'prefs');
57 if (move_uploaded_file($import_file, $import_file_new)) {
58 $import_file = $import_file_new;
59 $file_to_unlink = $import_file_new;
63 $json = file_get_contents($import_file);
64 if ($file_to_unlink) {
65 unlink($file_to_unlink);
68 // read from POST value (json)
69 $json = filter_input(INPUT_POST
, 'json');
72 // hide header message
73 $_SESSION['userprefs_autoload'] = true;
75 $config = json_decode($json, true);
76 $return_url = filter_input(INPUT_POST
, 'return_url');
77 if (! is_array($config)) {
78 $error = __('Could not import configuration');
80 // sanitize input values: treat them as though they came from HTTP POST request
81 $form_display = new FormDisplay();
82 foreach ($forms as $formset_id => $formset) {
83 foreach ($formset as $form_name => $form) {
84 $form_display->registerForm($formset_id . ': ' . $form_name, $form);
87 $cf = ConfigFile
::getInstance();
88 $new_config = $cf->getFlatDefaultConfig();
89 if (!empty($_POST['import_merge'])) {
90 $new_config = array_merge($new_config, $cf->getConfigArray());
92 $new_config = array_merge($new_config, $config);
94 foreach ($new_config as $k => $v) {
95 $_POST[str_replace('/', '-', $k)] = $v;
97 $cf->resetConfigData();
98 $all_ok = $form_display->process(true, false);
99 $all_ok = $all_ok && !$form_display->hasErrors();
102 if (!$all_ok && isset($_POST['fix_errors'])) {
103 $form_display->fixErrors();
107 // mimic original form and post json in a hidden field
108 include './libraries/header.inc.php';
109 include './libraries/user_preferences.inc.php';
110 $msg = PMA_Message
::error(__('Configuration contains incorrect data for some fields.'));
112 echo '<div class="config-form">';
113 $form_display->displayErrors();
116 <form action
="prefs_manage.php" method
="post">
117 <?php
echo PMA_generate_common_hidden_inputs() . "\n"; ?
>
118 <input type
="hidden" name
="json" value
="<?php echo htmlspecialchars($json) ?>" />
119 <input type
="hidden" name
="fix_errors" value
="1" />
120 <?php
if (!empty($_POST['import_merge'])): ?
>
121 <input type
="hidden" name
="import_merge" value
="1" />
123 <?php
if ($return_url): ?
>
124 <input type
="hidden" name
="return_url" value
="<?php echo htmlspecialchars($return_url) ?>" />
126 <p
><?php
echo __('Do you want to import remaining settings?') ?
></p
>
127 <input type
="submit" name
="submit_import" value
="<?php echo __('Yes') ?>" />
128 <input type
="submit" name
="submit_ignore" value
="<?php echo __('No') ?>" />
131 include './libraries/footer.inc.php';
135 // check for ThemeDefault and fontsize
137 if (isset($config['ThemeDefault'])
138 && $_SESSION['PMA_Theme_Manager']->theme
->getId() != $config['ThemeDefault']
139 && $_SESSION['PMA_Theme_Manager']->checkTheme($config['ThemeDefault'])) {
140 $_SESSION['PMA_Theme_Manager']->setActiveTheme($config['ThemeDefault']);
141 $_SESSION['PMA_Theme_Manager']->setThemeCookie();
142 $params['reload_left_frame'] = true;
144 if (isset($config['fontsize'])
145 && $config['fontsize'] != $GLOBALS['PMA_Config']->get('fontsize')) {
146 $params['set_fontsize'] = $config['fontsize'];
147 $params['reload_left_frame'] = true;
149 if (isset($config['lang'])
150 && $config['lang'] != $GLOBALS['lang']) {
151 $params['lang'] = $config['lang'];
152 $params['reload_left_frame'] = true;
154 if (isset($config['collation_connection'])
155 && $config['collation_connection'] != $GLOBALS['collation_connection']) {
156 $params['collation_connection'] = $config['collation_connection'];
157 $params['reload_left_frame'] = true;
161 $old_settings = PMA_load_userprefs();
162 $result = PMA_save_userprefs($cf->getConfigArray());
163 if ($result === true) {
165 $query = explode('&', parse_url($return_url, PHP_URL_QUERY
));
166 $return_url = parse_url($return_url, PHP_URL_PATH
);
167 foreach ($query as $q) {
168 $pos = strpos($q, '=');
169 $k = substr($q, 0, $pos);
173 $params[$k] = substr($q, $pos+
1);
176 $return_url = 'prefs_manage.php';
179 $GLOBALS['PMA_Config']->loadUserPreferences();
180 PMA_userprefs_redirect($forms, $old_settings, $return_url, $params);
186 } else if (isset($_POST['submit_clear'])) {
187 $old_settings = PMA_load_userprefs();
188 $result = PMA_save_userprefs(array());
189 if ($result === true) {
191 if ($_SESSION['PMA_Theme_Manager']->theme
->getId() != 'original') {
192 $GLOBALS['PMA_Config']->removeCookie($_SESSION['PMA_Theme_Manager']->getThemeCookieName());
193 unset($_SESSION['PMA_Theme_Manager']);
194 unset($_SESSION['PMA_Theme']);
195 $params['reload_left_frame'] = true;
197 if ($GLOBALS['PMA_Config']->get('fontsize') != '82%') {
198 $GLOBALS['PMA_Config']->removeCookie('pma_fontsize');
199 $params['reload_left_frame'] = true;
201 $GLOBALS['PMA_Config']->removeCookie('pma_collaction_connection');
202 $GLOBALS['PMA_Config']->removeCookie('pma_lang');
203 PMA_userprefs_redirect($forms, $old_settings, 'prefs_manage.php', $params);
211 $GLOBALS['js_include'][] = 'config.js';
212 require './libraries/header.inc.php';
213 require './libraries/user_preferences.inc.php';
215 if (!$error instanceof PMA_Message
) {
216 $error = PMA_Message
::error($error);
221 <script type
="text/javascript">
223 PMA_printJsValue("PMA_messages['strSavedOn']", __('Saved on: @DATE@'));
226 <div id
="maincontainer">
227 <div id
="main_pane_left">
229 <h2
><?php
echo __('Import') ?
></h2
>
230 <form
class="group-cnt prefs-form" name
="prefs_import" action
="prefs_manage.php" method
="post" enctype
="multipart/form-data">
232 echo PMA_generateHiddenMaxFileSize($max_upload_size) . "\n";
233 echo PMA_generate_common_hidden_inputs() . "\n";
235 <input type
="hidden" name
="json" value
="" />
236 <input type
="radio" id
="import_text_file" name
="import_type" value
="text_file" checked
="checked" />
237 <label
for="import_text_file"><?php
echo __('Import from file') ?
></label
>
238 <div id
="opts_import_text_file" class="prefsmanage_opts">
239 <label
for="input_import_file"><?php
echo __('Browse your computer:'); ?
></label
>
240 <input type
="file" name
="import_file" id
="input_import_file" />
242 <input type
="radio" id
="import_local_storage" name
="import_type" value
="local_storage" disabled
="disabled" />
243 <label
for="import_local_storage"><?php
echo __('Import from browser\'s storage') ?
></label
>
244 <div id
="opts_import_local_storage" class="prefsmanage_opts disabled">
245 <div
class="localStorage-supported">
246 <?php
echo __('Settings will be imported from your browser\'s local storage.') ?
>
248 <span
class="localStorage-exists">
249 <?php
echo __('Saved on: @DATE@') ?
>
251 <span
class="localStorage-empty">
252 <?php PMA_Message
::notice(__('You have no saved settings!'))->display() ?
>
255 <span
class="localStorage-unsupported">
256 <?php PMA_Message
::notice(__('This feature is not supported by your web browser'))->display() ?
>
260 <input type
="checkbox" id
="import_merge" name
="import_merge" />
261 <label
for="import_merge"><?php
echo __('Merge with current configuration') ?
></label
>
263 <input type
="submit" name
="submit_import" value
="<?php echo __('Go'); ?>" />
267 if (file_exists('./setup/index.php')) {
268 // show only if setup script is available, allows to disable this message
269 // by simply removing setup directory
272 <h2
><?php
echo __('More settings') ?
></h2
>
273 <div
class="group-cnt">
275 echo sprintf(__('You can set more settings by modifying config.inc.php, eg. by using %sSetup script%s.'), '<a href="setup/index.php">', '</a>');
276 echo PMA_showDocu('setup_script');
284 <div id
="main_pane_right">
286 <h2
><?php
echo __('Export') ?
></h2
>
287 <div
class="click-hide-message group-cnt" style
="display:none">
289 $message = PMA_Message
::rawSuccess(__('Configuration has been saved'));
293 <form
class="group-cnt prefs-form" name
="prefs_export" action
="prefs_manage.php" method
="post">
294 <?php
echo PMA_generate_common_hidden_inputs() . "\n" ?
>
295 <div style
="padding-bottom:0.5em">
296 <input type
="radio" id
="export_text_file" name
="export_type" value
="text_file" checked
="checked" />
297 <label
for="export_text_file"><?php
echo __('Save as file') ?
></label
>
299 <input type
="radio" id
="export_local_storage" name
="export_type" value
="local_storage" disabled
="disabled" />
300 <label
for="export_local_storage"><?php
echo __('Save to browser\'s storage') ?
></label
>
302 <div id
="opts_export_local_storage" class="prefsmanage_opts disabled">
303 <span
class="localStorage-supported">
304 <?php
echo __('Settings will be saved in your browser\'s local storage.') ?
>
305 <span
class="localStorage-exists">
306 <br
/><b
><?php
echo __('Existing settings will be overwritten!') ?
></b
>
309 <span
class="localStorage-unsupported">
310 <?php PMA_Message
::notice(__('This feature is not supported by your web browser'))->display() ?
>
314 <input type
="submit" name
="submit_export" value
="<?php echo __('Go'); ?>" />
318 <h2
><?php
echo __('Reset') ?
></h2
>
319 <form
class="group-cnt prefs-form" name
="prefs_reset" action
="prefs_manage.php" method
="post">
320 <?php
echo PMA_generate_common_hidden_inputs() . "\n" ?
>
321 <?php
echo __('You can reset all your settings and restore them to default values.') ?
>
323 <input type
="submit" name
="submit_clear" value
="<?php echo __('Reset') ?>" />
328 <br
class="clearfloat" />
332 * Displays the footer
334 require './libraries/footer.inc.php';