author | ymh <ymh.work@gmail.com> |
Wed, 21 Sep 2022 18:19:35 +0200 | |
changeset 18 | be944660c56a |
parent 16 | a86126ab1dd4 |
child 19 | 3d72ae0968f4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Options Management Administration Screen. |
|
4 |
* |
|
5 |
* If accessed directly in a browser this page shows a list of all saved options |
|
6 |
* along with editable fields for their values. Serialized data is not supported |
|
7 |
* and there is no way to remove options via this page. It is not linked to from |
|
8 |
* anywhere else in the admin. |
|
9 |
* |
|
10 |
* This file is also the target of the forms in core and custom options pages |
|
11 |
* that use the Settings API. In this case it saves the new option values |
|
12 |
* and returns the user to their page of origin. |
|
13 |
* |
|
14 |
* @package WordPress |
|
15 |
* @subpackage Administration |
|
16 |
*/ |
|
17 |
||
18 |
/** WordPress Administration Bootstrap */ |
|
16 | 19 |
require_once __DIR__ . '/admin.php'; |
0 | 20 |
|
9 | 21 |
$title = __( 'Settings' ); |
22 |
$this_file = 'options.php'; |
|
0 | 23 |
$parent_file = 'options-general.php'; |
24 |
||
9 | 25 |
wp_reset_vars( array( 'action', 'option_page' ) ); |
0 | 26 |
|
27 |
$capability = 'manage_options'; |
|
28 |
||
5 | 29 |
// This is for back compat and will eventually be removed. |
9 | 30 |
if ( empty( $option_page ) ) { |
0 | 31 |
$option_page = 'options'; |
5 | 32 |
} else { |
0 | 33 |
|
34 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
35 |
* Filters the capability required when using the Settings API. |
0 | 36 |
* |
37 |
* By default, the options groups for all registered settings require the manage_options capability. |
|
38 |
* This filter is required to change the capability required for a certain options page. |
|
39 |
* |
|
40 |
* @since 3.2.0 |
|
41 |
* |
|
42 |
* @param string $capability The capability used for the page, which is manage_options by default. |
|
43 |
*/ |
|
44 |
$capability = apply_filters( "option_page_capability_{$option_page}", $capability ); |
|
5 | 45 |
} |
0 | 46 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
47 |
if ( ! current_user_can( $capability ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
wp_die( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . |
16 | 50 |
'<p>' . __( 'Sorry, you are not allowed to manage options for this site.' ) . '</p>', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
403 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
53 |
} |
0 | 54 |
|
16 | 55 |
// Handle admin email change requests. |
9 | 56 |
if ( ! empty( $_GET['adminhash'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
57 |
$new_admin_details = get_option( 'adminhash' ); |
9 | 58 |
$redirect = 'options-general.php?updated=false'; |
59 |
if ( is_array( $new_admin_details ) && hash_equals( $new_admin_details['hash'], $_GET['adminhash'] ) && ! empty( $new_admin_details['newemail'] ) ) { |
|
60 |
update_option( 'admin_email', $new_admin_details['newemail'] ); |
|
0 | 61 |
delete_option( 'adminhash' ); |
62 |
delete_option( 'new_admin_email' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
63 |
$redirect = 'options-general.php?updated=true'; |
0 | 64 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
65 |
wp_redirect( admin_url( $redirect ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
exit; |
16 | 67 |
} elseif ( ! empty( $_GET['dismiss'] ) && 'new_admin_email' === $_GET['dismiss'] ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
68 |
check_admin_referer( 'dismiss-' . get_current_blog_id() . '-new_admin_email' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
delete_option( 'adminhash' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
70 |
delete_option( 'new_admin_email' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
71 |
wp_redirect( admin_url( 'options-general.php?updated=true' ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
72 |
exit; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
if ( is_multisite() && ! current_user_can( 'manage_network_options' ) && 'update' != $action ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
76 |
wp_die( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
'<p>' . __( 'Sorry, you are not allowed to delete these items.' ) . '</p>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
79 |
403 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
80 |
); |
0 | 81 |
} |
82 |
||
16 | 83 |
$allowed_options = array( |
9 | 84 |
'general' => array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
'blogname', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
'blogdescription', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
'gmt_offset', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
'date_format', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
'time_format', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
90 |
'start_of_week', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
91 |
'timezone_string', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
'WPLANG', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
'new_admin_email', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
94 |
), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
95 |
'discussion' => array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
96 |
'default_pingback_flag', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
'default_ping_status', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
98 |
'default_comment_status', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
'comments_notify', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
'moderation_notify', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
'comment_moderation', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
'require_name_email', |
16 | 103 |
'comment_previously_approved', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
'comment_max_links', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
'moderation_keys', |
16 | 106 |
'disallowed_keys', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
107 |
'show_avatars', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
108 |
'avatar_rating', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
109 |
'avatar_default', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
110 |
'close_comments_for_old_posts', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
'close_comments_days_old', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
'thread_comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
113 |
'thread_comments_depth', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
114 |
'page_comments', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
'comments_per_page', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
'default_comments_page', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
117 |
'comment_order', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
'comment_registration', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
119 |
'show_comments_cookies_opt_in', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
120 |
), |
9 | 121 |
'media' => array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
122 |
'thumbnail_size_w', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
123 |
'thumbnail_size_h', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
124 |
'thumbnail_crop', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
125 |
'medium_size_w', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
126 |
'medium_size_h', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
'large_size_w', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
128 |
'large_size_h', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
'image_default_size', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
130 |
'image_default_align', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
'image_default_link_type', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
), |
9 | 133 |
'reading' => array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
'posts_per_page', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
135 |
'posts_per_rss', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
'rss_use_excerpt', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
137 |
'show_on_front', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
138 |
'page_on_front', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
139 |
'page_for_posts', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
'blog_public', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
141 |
), |
9 | 142 |
'writing' => array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
143 |
'default_category', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
144 |
'default_email_category', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
'default_link_category', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
146 |
'default_post_format', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
), |
0 | 148 |
); |
16 | 149 |
$allowed_options['misc'] = array(); |
150 |
$allowed_options['options'] = array(); |
|
151 |
$allowed_options['privacy'] = array(); |
|
0 | 152 |
|
9 | 153 |
$mail_options = array( 'mailserver_url', 'mailserver_port', 'mailserver_login', 'mailserver_pass' ); |
0 | 154 |
|
16 | 155 |
if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ), true ) ) { |
156 |
$allowed_options['reading'][] = 'blog_charset'; |
|
9 | 157 |
} |
0 | 158 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
if ( get_site_option( 'initial_db_version' ) < 32453 ) { |
16 | 160 |
$allowed_options['writing'][] = 'use_smilies'; |
161 |
$allowed_options['writing'][] = 'use_balanceTags'; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
162 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
163 |
|
9 | 164 |
if ( ! is_multisite() ) { |
165 |
if ( ! defined( 'WP_SITEURL' ) ) { |
|
16 | 166 |
$allowed_options['general'][] = 'siteurl'; |
9 | 167 |
} |
168 |
if ( ! defined( 'WP_HOME' ) ) { |
|
16 | 169 |
$allowed_options['general'][] = 'home'; |
9 | 170 |
} |
0 | 171 |
|
16 | 172 |
$allowed_options['general'][] = 'users_can_register'; |
173 |
$allowed_options['general'][] = 'default_role'; |
|
0 | 174 |
|
16 | 175 |
$allowed_options['writing'] = array_merge( $allowed_options['writing'], $mail_options ); |
176 |
$allowed_options['writing'][] = 'ping_sites'; |
|
177 |
||
178 |
$allowed_options['media'][] = 'uploads_use_yearmonth_folders'; |
|
0 | 179 |
|
16 | 180 |
/* |
181 |
* If upload_url_path is not the default (empty), |
|
182 |
* or upload_path is not the default ('wp-content/uploads' or empty), |
|
183 |
* they can be edited, otherwise they're locked. |
|
184 |
*/ |
|
9 | 185 |
if ( get_option( 'upload_url_path' ) || ( get_option( 'upload_path' ) != 'wp-content/uploads' && get_option( 'upload_path' ) ) ) { |
16 | 186 |
$allowed_options['media'][] = 'upload_path'; |
187 |
$allowed_options['media'][] = 'upload_url_path'; |
|
0 | 188 |
} |
189 |
} else { |
|
190 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
191 |
* Filters whether the post-by-email functionality is enabled. |
0 | 192 |
* |
193 |
* @since 3.0.0 |
|
194 |
* |
|
5 | 195 |
* @param bool $enabled Whether post-by-email configuration is enabled. Default true. |
0 | 196 |
*/ |
9 | 197 |
if ( apply_filters( 'enable_post_by_email_configuration', true ) ) { |
16 | 198 |
$allowed_options['writing'] = array_merge( $allowed_options['writing'], $mail_options ); |
9 | 199 |
} |
0 | 200 |
} |
201 |
||
202 |
/** |
|
16 | 203 |
* Filters the allowed options list. |
0 | 204 |
* |
205 |
* @since 2.7.0 |
|
16 | 206 |
* @deprecated 5.5.0 Use {@see 'allowed_options'} instead. |
0 | 207 |
* |
16 | 208 |
* @param array $allowed_options The allowed options list. |
0 | 209 |
*/ |
16 | 210 |
$allowed_options = apply_filters_deprecated( |
211 |
'whitelist_options', |
|
212 |
array( $allowed_options ), |
|
213 |
'5.5.0', |
|
18 | 214 |
'allowed_options', |
16 | 215 |
__( 'Please consider writing more inclusive code.' ) |
216 |
); |
|
0 | 217 |
|
16 | 218 |
/** |
219 |
* Filters the allowed options list. |
|
220 |
* |
|
221 |
* @since 5.5.0 |
|
222 |
* |
|
223 |
* @param array $allowed_options The allowed options list. |
|
0 | 224 |
*/ |
16 | 225 |
$allowed_options = apply_filters( 'allowed_options', $allowed_options ); |
226 |
||
227 |
if ( 'update' === $action ) { // We are saving settings sent from a settings page. |
|
228 |
if ( 'options' === $option_page && ! isset( $_POST['option_page'] ) ) { // This is for back compat and will eventually be removed. |
|
0 | 229 |
$unregistered = true; |
230 |
check_admin_referer( 'update-options' ); |
|
231 |
} else { |
|
232 |
$unregistered = false; |
|
233 |
check_admin_referer( $option_page . '-options' ); |
|
234 |
} |
|
235 |
||
16 | 236 |
if ( ! isset( $allowed_options[ $option_page ] ) ) { |
237 |
wp_die( |
|
238 |
sprintf( |
|
239 |
/* translators: %s: The options page name. */ |
|
240 |
__( '<strong>Error</strong>: Options page %s not found in the allowed options list.' ), |
|
241 |
'<code>' . esc_html( $option_page ) . '</code>' |
|
242 |
) |
|
243 |
); |
|
9 | 244 |
} |
0 | 245 |
|
16 | 246 |
if ( 'options' === $option_page ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
247 |
if ( is_multisite() && ! current_user_can( 'manage_network_options' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
248 |
wp_die( __( 'Sorry, you are not allowed to modify unregistered settings for this site.' ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
249 |
} |
9 | 250 |
$options = explode( ',', wp_unslash( $_POST['page_options'] ) ); |
0 | 251 |
} else { |
16 | 252 |
$options = $allowed_options[ $option_page ]; |
0 | 253 |
} |
254 |
||
16 | 255 |
if ( 'general' === $option_page ) { |
5 | 256 |
// Handle custom date/time formats. |
16 | 257 |
if ( ! empty( $_POST['date_format'] ) && isset( $_POST['date_format_custom'] ) |
258 |
&& '\c\u\s\t\o\m' === wp_unslash( $_POST['date_format'] ) |
|
259 |
) { |
|
0 | 260 |
$_POST['date_format'] = $_POST['date_format_custom']; |
9 | 261 |
} |
16 | 262 |
|
263 |
if ( ! empty( $_POST['time_format'] ) && isset( $_POST['time_format_custom'] ) |
|
264 |
&& '\c\u\s\t\o\m' === wp_unslash( $_POST['time_format'] ) |
|
265 |
) { |
|
0 | 266 |
$_POST['time_format'] = $_POST['time_format_custom']; |
9 | 267 |
} |
16 | 268 |
|
0 | 269 |
// Map UTC+- timezones to gmt_offsets and set timezone_string to empty. |
9 | 270 |
if ( ! empty( $_POST['timezone_string'] ) && preg_match( '/^UTC[+-]/', $_POST['timezone_string'] ) ) { |
271 |
$_POST['gmt_offset'] = $_POST['timezone_string']; |
|
272 |
$_POST['gmt_offset'] = preg_replace( '/UTC\+?/', '', $_POST['gmt_offset'] ); |
|
0 | 273 |
$_POST['timezone_string'] = ''; |
274 |
} |
|
5 | 275 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
276 |
// Handle translation installation. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
277 |
if ( ! empty( $_POST['WPLANG'] ) && current_user_can( 'install_languages' ) ) { |
16 | 278 |
require_once ABSPATH . 'wp-admin/includes/translation-install.php'; |
5 | 279 |
|
280 |
if ( wp_can_install_language_pack() ) { |
|
281 |
$language = wp_download_language_pack( $_POST['WPLANG'] ); |
|
282 |
if ( $language ) { |
|
283 |
$_POST['WPLANG'] = $language; |
|
284 |
} |
|
285 |
} |
|
286 |
} |
|
0 | 287 |
} |
288 |
||
289 |
if ( $options ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
290 |
$user_language_old = get_user_locale(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
291 |
|
0 | 292 |
foreach ( $options as $option ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
293 |
if ( $unregistered ) { |
9 | 294 |
_deprecated_argument( |
295 |
'options.php', |
|
296 |
'2.7.0', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
297 |
sprintf( |
16 | 298 |
/* translators: %s: The option/setting. */ |
299 |
__( 'The %s setting is unregistered. Unregistered settings are deprecated. See https://developer.wordpress.org/plugins/settings/settings-api/' ), |
|
300 |
'<code>' . esc_html( $option ) . '</code>' |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
301 |
) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
302 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
303 |
} |
0 | 304 |
|
305 |
$option = trim( $option ); |
|
9 | 306 |
$value = null; |
0 | 307 |
if ( isset( $_POST[ $option ] ) ) { |
308 |
$value = $_POST[ $option ]; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
309 |
if ( ! is_array( $value ) ) { |
0 | 310 |
$value = trim( $value ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
311 |
} |
0 | 312 |
$value = wp_unslash( $value ); |
313 |
} |
|
314 |
update_option( $option, $value ); |
|
315 |
} |
|
5 | 316 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
317 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
318 |
* Switch translation in case WPLANG was changed. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
* The global $locale is used in get_locale() which is |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
* used as a fallback in get_user_locale(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
321 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
322 |
unset( $GLOBALS['locale'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
323 |
$user_language_new = get_user_locale(); |
9 | 324 |
if ( $user_language_old !== $user_language_new ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
325 |
load_default_textdomain( $user_language_new ); |
5 | 326 |
} |
0 | 327 |
} |
328 |
||
16 | 329 |
/* |
330 |
* Handle settings errors and return to options page. |
|
0 | 331 |
*/ |
16 | 332 |
|
0 | 333 |
// If no settings errors were registered add a general 'updated' message. |
9 | 334 |
if ( ! count( get_settings_errors() ) ) { |
16 | 335 |
add_settings_error( 'general', 'settings_updated', __( 'Settings saved.' ), 'success' ); |
9 | 336 |
} |
337 |
set_transient( 'settings_errors', get_settings_errors(), 30 ); |
|
0 | 338 |
|
16 | 339 |
// Redirect back to the settings page that was submitted. |
9 | 340 |
$goback = add_query_arg( 'settings-updated', 'true', wp_get_referer() ); |
0 | 341 |
wp_redirect( $goback ); |
342 |
exit; |
|
343 |
} |
|
344 |
||
16 | 345 |
require_once ABSPATH . 'wp-admin/admin-header.php'; ?> |
0 | 346 |
|
347 |
<div class="wrap"> |
|
9 | 348 |
<h1><?php esc_html_e( 'All Settings' ); ?></h1> |
16 | 349 |
|
350 |
<div class="notice notice-warning"> |
|
351 |
<p><strong><?php _e( 'Warning:' ); ?></strong> <?php _e( 'This page allows direct access to your site settings. You can break things here. Please be cautious!' ); ?></p> |
|
352 |
</div> |
|
353 |
||
9 | 354 |
<form name="form" action="options.php" method="post" id="all-options"> |
355 |
<?php wp_nonce_field( 'options-options' ); ?> |
|
356 |
<input type="hidden" name="action" value="update" /> |
|
357 |
<input type="hidden" name="option_page" value="options" /> |
|
358 |
<table class="form-table" role="presentation"> |
|
0 | 359 |
<?php |
360 |
$options = $wpdb->get_results( "SELECT * FROM $wpdb->options ORDER BY option_name" ); |
|
361 |
||
362 |
foreach ( (array) $options as $option ) : |
|
363 |
$disabled = false; |
|
16 | 364 |
|
365 |
if ( '' === $option->option_name ) { |
|
0 | 366 |
continue; |
9 | 367 |
} |
16 | 368 |
|
0 | 369 |
if ( is_serialized( $option->option_value ) ) { |
370 |
if ( is_serialized_string( $option->option_value ) ) { |
|
5 | 371 |
// This is a serialized string, so we should display it. |
9 | 372 |
$value = maybe_unserialize( $option->option_value ); |
0 | 373 |
$options_to_update[] = $option->option_name; |
9 | 374 |
$class = 'all-options'; |
0 | 375 |
} else { |
9 | 376 |
$value = 'SERIALIZED DATA'; |
0 | 377 |
$disabled = true; |
9 | 378 |
$class = 'all-options disabled'; |
0 | 379 |
} |
380 |
} else { |
|
9 | 381 |
$value = $option->option_value; |
0 | 382 |
$options_to_update[] = $option->option_name; |
9 | 383 |
$class = 'all-options'; |
0 | 384 |
} |
16 | 385 |
|
0 | 386 |
$name = esc_attr( $option->option_name ); |
5 | 387 |
?> |
0 | 388 |
<tr> |
9 | 389 |
<th scope="row"><label for="<?php echo $name; ?>"><?php echo esc_html( $option->option_name ); ?></label></th> |
5 | 390 |
<td> |
9 | 391 |
<?php if ( strpos( $value, "\n" ) !== false ) : ?> |
392 |
<textarea class="<?php echo $class; ?>" name="<?php echo $name; ?>" id="<?php echo $name; ?>" cols="30" rows="5"><?php echo esc_textarea( $value ); ?></textarea> |
|
393 |
<?php else : ?> |
|
394 |
<input class="regular-text <?php echo $class; ?>" type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr( $value ); ?>"<?php disabled( $disabled, true ); ?> /> |
|
18 | 395 |
<?php endif; ?></td> |
5 | 396 |
</tr> |
397 |
<?php endforeach; ?> |
|
9 | 398 |
</table> |
0 | 399 |
|
400 |
<input type="hidden" name="page_options" value="<?php echo esc_attr( implode( ',', $options_to_update ) ); ?>" /> |
|
401 |
||
402 |
<?php submit_button( __( 'Save Changes' ), 'primary', 'Update' ); ?> |
|
403 |
||
9 | 404 |
</form> |
0 | 405 |
</div> |
406 |
||
407 |
<?php |
|
16 | 408 |
require_once ABSPATH . 'wp-admin/admin-footer.php'; |