2003-06-11 18:59:14 -04:00
< ? php
2008-08-16 03:27:34 -04:00
/**
2011-04-28 11:24:49 -04:00
* Options Management Administration Screen .
2008-08-16 03:27:34 -04:00
*
2010-02-17 12:50:42 -05:00
* If accessed directly in a browser this page shows a list of all saved options
* along with editable fields for their values . Serialized data is not supported
* and there is no way to remove options via this page . It is not linked to from
* anywhere else in the admin .
2008-08-16 03:27:34 -04:00
*
2010-02-17 12:50:42 -05:00
* This file is also the target of the forms in core and custom options pages
* that use the Settings API . In this case it saves the new option values
* and returns the user to their page of origin .
2008-08-16 03:27:34 -04:00
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2010-04-18 02:14:45 -04:00
require_once ( './admin.php' );
2004-06-13 12:14:58 -04:00
2008-02-13 19:39:38 -05:00
$title = __ ( 'Settings' );
2006-11-18 02:31:29 -05:00
$this_file = 'options.php' ;
$parent_file = 'options-general.php' ;
2010-03-09 05:57:49 -05:00
wp_reset_vars ( array ( 'action' , 'option_page' ));
2011-05-22 17:32:22 -04:00
$capability = 'manage_options' ;
2010-03-09 05:57:49 -05:00
if ( empty ( $option_page ) ) // This is for back compat and will eventually be removed.
$option_page = 'options' ;
2011-05-22 17:32:22 -04:00
else
$capability = apply_filters ( " option_page_capability_ { $option_page } " , $capability );
2010-03-09 05:57:49 -05:00
2011-05-22 17:32:22 -04:00
if ( ! current_user_can ( $capability ) )
2010-03-09 05:57:49 -05:00
wp_die ( __ ( 'Cheatin’ uh?' ));
2010-03-17 12:27:25 -04:00
2010-04-26 13:55:41 -04:00
// Handle admin email change requests
if ( is_multisite () ) {
if ( ! empty ( $_GET [ 'adminhash' ] ) ) {
$new_admin_details = get_option ( 'adminhash' );
$redirect = 'options-general.php?updated=false' ;
if ( is_array ( $new_admin_details ) && $new_admin_details [ 'hash' ] == $_GET [ 'adminhash' ] && ! empty ( $new_admin_details [ 'newemail' ]) ) {
update_option ( 'admin_email' , $new_admin_details [ 'newemail' ] );
delete_option ( 'adminhash' );
delete_option ( 'new_admin_email' );
$redirect = 'options-general.php?updated=true' ;
}
wp_redirect ( admin_url ( $redirect ) );
exit ;
} elseif ( ! empty ( $_GET [ 'dismiss' ] ) && 'new_admin_email' == $_GET [ 'dismiss' ] ) {
delete_option ( 'adminhash' );
delete_option ( 'new_admin_email' );
wp_redirect ( admin_url ( 'options-general.php?updated=true' ) );
exit ;
}
}
2010-03-09 05:57:49 -05:00
if ( is_multisite () && ! is_super_admin () && 'update' != $action )
wp_die ( __ ( 'Cheatin’ uh?' ));
2003-06-12 18:48:52 -04:00
2008-09-03 21:11:18 -04:00
$whitelist_options = array (
2010-01-25 16:33:49 -05:00
'general' => array ( 'blogname' , 'blogdescription' , 'gmt_offset' , 'date_format' , 'time_format' , 'start_of_week' , 'timezone_string' ),
2010-05-15 00:56:56 -04:00
'discussion' => array ( 'default_pingback_flag' , 'default_ping_status' , 'default_comment_status' , 'comments_notify' , 'moderation_notify' , 'comment_moderation' , 'require_name_email' , 'comment_whitelist' , 'comment_max_links' , 'moderation_keys' , 'blacklist_keys' , 'show_avatars' , 'avatar_rating' , 'avatar_default' , 'close_comments_for_old_posts' , 'close_comments_days_old' , 'thread_comments' , 'thread_comments_depth' , 'page_comments' , 'comments_per_page' , 'default_comments_page' , 'comment_order' , 'comment_registration' ),
2010-04-30 10:31:18 -04:00
'media' => array ( 'thumbnail_size_w' , 'thumbnail_size_h' , 'thumbnail_crop' , 'medium_size_w' , 'medium_size_h' , 'large_size_w' , 'large_size_h' , 'image_default_size' , 'image_default_align' , 'image_default_link_type' , 'embed_autourls' , 'embed_size_w' , 'embed_size_h' ),
2008-09-03 21:11:18 -04:00
'privacy' => array ( 'blog_public' ),
2008-11-03 01:27:42 -05:00
'reading' => array ( 'posts_per_page' , 'posts_per_rss' , 'rss_use_excerpt' , 'blog_charset' , 'show_on_front' , 'page_on_front' , 'page_for_posts' ),
2010-12-19 00:36:11 -05:00
'writing' => array ( 'default_post_edit_rows' , 'use_smilies' , 'default_category' , 'default_email_category' , 'use_balanceTags' , 'default_link_category' , 'default_post_format' , 'enable_app' , 'enable_xmlrpc' ),
2008-09-03 21:11:18 -04:00
'options' => array ( '' ) );
2010-01-25 16:33:49 -05:00
$mail_options = array ( 'mailserver_url' , 'mailserver_port' , 'mailserver_login' , 'mailserver_pass' );
2010-03-02 05:31:06 -05:00
$uploads_options = array ( 'uploads_use_yearmonth_folders' , 'upload_path' , 'upload_url_path' );
2010-01-25 16:33:49 -05:00
if ( ! is_multisite () ) {
2010-03-09 05:57:49 -05:00
if ( ! defined ( 'WP_SITEURL' ) )
$whitelist_options [ 'general' ][] = 'siteurl' ;
if ( ! defined ( 'WP_HOME' ) )
$whitelist_options [ 'general' ][] = 'home' ;
2010-01-25 16:33:49 -05:00
$whitelist_options [ 'general' ][] = 'admin_email' ;
$whitelist_options [ 'general' ][] = 'users_can_register' ;
$whitelist_options [ 'general' ][] = 'default_role' ;
$whitelist_options [ 'writing' ] = array_merge ( $whitelist_options [ 'writing' ], $mail_options );
$whitelist_options [ 'writing' ][] = 'ping_sites' ;
2010-03-02 05:31:06 -05:00
$whitelist_options [ 'media' ] = array_merge ( $whitelist_options [ 'media' ], $uploads_options );
2010-01-25 16:33:49 -05:00
} else {
$whitelist_options [ 'general' ][] = 'new_admin_email' ;
$whitelist_options [ 'general' ][] = 'WPLANG' ;
$whitelist_options [ 'general' ][] = 'language' ;
2010-03-09 05:57:49 -05:00
if ( apply_filters ( 'enable_post_by_email_configuration' , true ) )
2010-01-25 16:33:49 -05:00
$whitelist_options [ 'writing' ] = array_merge ( $whitelist_options [ 'writing' ], $mail_options );
$whitelist_options [ 'misc' ] = array ();
}
2008-09-03 21:11:18 -04:00
$whitelist_options = apply_filters ( 'whitelist_options' , $whitelist_options );
2010-03-21 03:38:10 -04:00
/*
2010-02-17 12:50:42 -05:00
* If $_GET [ 'action' ] == 'update' we are saving settings sent from a settings page
*/
2010-03-09 05:57:49 -05:00
if ( 'update' == $action ) {
2010-03-21 03:38:10 -04:00
if ( 'options' == $option_page && ! isset ( $_POST [ 'option_page' ] ) ) { // This is for back compat and will eventually be removed.
$unregistered = true ;
2008-10-19 20:40:36 -04:00
check_admin_referer ( 'update-options' );
2010-03-21 03:38:10 -04:00
} else {
$unregistered = false ;
2010-03-09 05:57:49 -05:00
check_admin_referer ( $option_page . '-options' );
2010-03-21 03:38:10 -04:00
}
2005-11-30 02:27:39 -05:00
2008-09-03 21:11:18 -04:00
if ( ! isset ( $whitelist_options [ $option_page ] ) )
2011-09-30 13:18:35 -04:00
wp_die ( __ ( '<strong>ERROR</strong>: options page not found.' ) );
2008-09-03 21:11:18 -04:00
2010-03-21 03:38:10 -04:00
if ( 'options' == $option_page ) {
2010-03-16 16:59:26 -04:00
if ( is_multisite () && ! is_super_admin () )
2010-03-15 18:00:48 -04:00
wp_die ( __ ( 'You do not have sufficient permissions to modify unregistered settings for this site.' ) );
2010-03-16 16:59:26 -04:00
$options = explode ( ',' , stripslashes ( $_POST [ 'page_options' ] ) );
} else {
2008-09-03 21:11:18 -04:00
$options = $whitelist_options [ $option_page ];
2010-03-16 16:59:26 -04:00
}
2004-02-13 04:59:47 -05:00
2008-10-13 14:32:16 -04:00
// Handle custom date/time formats
if ( 'general' == $option_page ) {
2008-10-13 21:43:04 -04:00
if ( ! empty ( $_POST [ 'date_format' ]) && isset ( $_POST [ 'date_format_custom' ]) && '\c\u\s\t\o\m' == stripslashes ( $_POST [ 'date_format' ] ) )
2008-10-13 14:32:16 -04:00
$_POST [ 'date_format' ] = $_POST [ 'date_format_custom' ];
2008-10-13 21:43:04 -04:00
if ( ! empty ( $_POST [ 'time_format' ]) && isset ( $_POST [ 'time_format_custom' ]) && '\c\u\s\t\o\m' == stripslashes ( $_POST [ 'time_format' ] ) )
2008-10-13 14:32:16 -04:00
$_POST [ 'time_format' ] = $_POST [ 'time_format_custom' ];
2009-12-23 09:16:36 -05:00
// Map UTC+- timezones to gmt_offsets and set timezone_string to empty.
if ( ! empty ( $_POST [ 'timezone_string' ]) && preg_match ( '/^UTC[+-]/' , $_POST [ 'timezone_string' ]) ) {
$_POST [ 'gmt_offset' ] = $_POST [ 'timezone_string' ];
$_POST [ 'gmt_offset' ] = preg_replace ( '/UTC\+?/' , '' , $_POST [ 'gmt_offset' ]);
$_POST [ 'timezone_string' ] = '' ;
}
2008-10-13 14:32:16 -04:00
}
if ( $options ) {
foreach ( $options as $option ) {
2010-03-20 21:49:00 -04:00
if ( $unregistered )
2010-04-11 06:41:54 -04:00
_deprecated_argument ( 'options.php' , '2.7' , sprintf ( __ ( 'The <code>%1$s</code> setting is unregistered. Unregistered settings are deprecated. See http://codex.wordpress.org/Settings_API' ), $option , $option_page ) );
2010-03-20 21:49:00 -04:00
2006-01-09 17:24:57 -05:00
$option = trim ( $option );
2008-11-03 22:22:24 -05:00
$value = null ;
if ( isset ( $_POST [ $option ]) )
$value = $_POST [ $option ];
2010-03-09 05:57:49 -05:00
if ( ! is_array ( $value ) )
$value = trim ( $value );
2007-08-16 15:55:19 -04:00
$value = stripslashes_deep ( $value );
2006-09-08 17:42:05 -04:00
update_option ( $option , $value );
2006-01-09 17:24:57 -05:00
}
}
2007-06-13 22:25:30 -04:00
2010-02-17 12:50:42 -05:00
/**
2011-12-14 12:36:38 -05:00
* Handle settings errors and return to options page
2010-02-17 12:50:42 -05:00
*/
// If no settings errors were registered add a general 'updated' message.
if ( ! count ( get_settings_errors () ) )
add_settings_error ( 'general' , 'settings_updated' , __ ( 'Settings saved.' ), 'updated' );
set_transient ( 'settings_errors' , get_settings_errors (), 30 );
/**
* Redirect back to the settings page that was submitted
*/
2010-12-03 05:59:20 -05:00
$goback = add_query_arg ( 'settings-updated' , 'true' , wp_get_referer () );
2008-10-13 14:32:16 -04:00
wp_redirect ( $goback );
2010-03-09 05:57:49 -05:00
exit ;
}
2010-01-12 16:11:52 -05:00
2010-04-18 02:14:45 -04:00
include ( './admin-header.php' ); ?>
2004-04-11 04:15:10 -04:00
2003-06-11 18:59:14 -04:00
< div class = " wrap " >
2008-11-26 18:35:23 -05:00
< ? php screen_icon (); ?>
2010-02-27 17:50:00 -05:00
< h2 >< ? php esc_html_e ( 'All Settings' ); ?> </h2>
2006-10-04 07:28:38 -04:00
< form name = " form " action = " options.php " method = " post " id = " all-options " >
2008-09-03 21:11:18 -04:00
< ? php wp_nonce_field ( 'options-options' ) ?>
2003-12-16 20:07:40 -05:00
< input type = " hidden " name = " action " value = " update " />
2008-09-03 21:11:18 -04:00
< input type = 'hidden' name = 'option_page' value = 'options' />
2008-02-23 23:33:10 -05:00
< table class = " form-table " >
2003-06-11 18:59:14 -04:00
< ? php
2010-02-27 17:50:00 -05:00
$options = $wpdb -> get_results ( " SELECT * FROM $wpdb->options ORDER BY option_name " );
2004-04-24 17:21:19 -04:00
2010-02-27 17:50:00 -05:00
foreach ( ( array ) $options as $option ) :
2010-03-11 12:12:23 -05:00
$disabled = false ;
2010-01-18 15:34:48 -05:00
if ( $option -> option_name == '' )
2010-01-12 16:11:52 -05:00
continue ;
2010-02-27 17:50:00 -05:00
if ( is_serialized ( $option -> option_value ) ) {
if ( is_serialized_string ( $option -> option_value ) ) {
2006-10-12 19:54:36 -04:00
// this is a serialized string, so we should display it
2010-02-27 17:50:00 -05:00
$value = maybe_unserialize ( $option -> option_value );
2006-10-12 19:54:36 -04:00
$options_to_update [] = $option -> option_name ;
$class = 'all-options' ;
} else {
$value = 'SERIALIZED DATA' ;
2010-03-11 12:12:23 -05:00
$disabled = true ;
2006-10-12 19:54:36 -04:00
$class = 'all-options disabled' ;
}
} else {
2007-08-01 15:24:51 -04:00
$value = $option -> option_value ;
2006-10-12 19:54:36 -04:00
$options_to_update [] = $option -> option_name ;
$class = 'all-options' ;
}
2010-02-27 17:50:00 -05:00
$name = esc_attr ( $option -> option_name );
2004-09-04 20:24:28 -04:00
echo "
< tr >
2010-02-27 17:54:40 -05:00
< th scope = 'row' >< label for = '$name' > " . esc_html( $option->option_name ) . " </ label ></ th >
2006-10-04 07:28:38 -04:00
< td > " ;
2010-02-27 17:50:00 -05:00
if ( strpos ( $value , " \n " ) !== false )
2010-11-17 12:12:01 -05:00
echo " <textarea class=' $class ' name=' $name ' id=' $name ' cols='30' rows='5'> " . esc_textarea ( $value ) . " </textarea> " ;
2010-02-27 17:50:00 -05:00
else
2010-03-11 12:12:23 -05:00
echo " <input class='regular-text $class ' type='text' name=' $name ' id=' $name ' value=' " . esc_attr ( $value ) . " ' " . disabled ( $disabled , true , false ) . " /> " ;
2006-10-04 07:28:38 -04:00
echo " </td>
2004-09-04 20:24:28 -04:00
</ tr > " ;
2004-04-24 17:21:19 -04:00
endforeach ;
2003-06-11 18:59:14 -04:00
?>
</ table >
2010-10-17 14:24:34 -04:00
< input type = " hidden " name = " page_options " value = " <?php echo esc_attr( implode( ',', $options_to_update ) ); ?> " />
2010-10-28 17:56:43 -04:00
< ? php submit_button ( __ ( 'Save Changes' ), 'primary' , 'Update' ); ?>
2010-10-17 14:24:34 -04:00
2003-12-16 20:07:40 -05:00
</ form >
2003-06-11 18:59:14 -04:00
</ div >
< ? php
2010-04-18 02:14:45 -04:00
include ( './admin-footer.php' );