2003-06-11 22:59:14 +00:00
<? php
2008-08-16 07:27:34 +00:00
/**
2011-04-28 15:24:49 +00:00
* Options Management Administration Screen.
2008-08-16 07:27:34 +00:00
*
2010-02-17 17:50:42 +00: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 07:27:34 +00:00
*
2010-02-17 17:50:42 +00: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 07:27:34 +00:00
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
2010-04-18 06:14:45 +00:00
require_once ( './admin.php' );
2004-06-13 16:14:58 +00:00
2008-02-14 00:39:38 +00:00
$title = __ ( 'Settings' );
2006-11-18 07:31:29 +00:00
$this_file = 'options.php' ;
$parent_file = 'options-general.php' ;
2010-03-09 10:57:49 +00:00
wp_reset_vars ( array ( 'action' , 'option_page' ));
2011-05-22 21:32:22 +00:00
$capability = 'manage_options' ;
2010-03-09 10:57:49 +00:00
if ( empty ( $option_page ) ) // This is for back compat and will eventually be removed.
$option_page = 'options' ;
2011-05-22 21:32:22 +00:00
else
$capability = apply_filters ( "option_page_capability_ { $option_page } " , $capability );
2010-03-09 10:57:49 +00:00
2011-05-22 21:32:22 +00:00
if ( ! current_user_can ( $capability ) )
2010-03-09 10:57:49 +00:00
wp_die ( __ ( 'Cheatin’ uh?' ));
2010-03-17 16:27:25 +00:00
2010-04-26 17:55:41 +00: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 10:57:49 +00:00
if ( is_multisite () && ! is_super_admin () && 'update' != $action )
wp_die ( __ ( 'Cheatin’ uh?' ));
2003-06-12 22:48:52 +00:00
2008-09-04 01:11:18 +00:00
$whitelist_options = array (
2010-01-25 21:33:49 +00:00
'general' => array ( 'blogname' , 'blogdescription' , 'gmt_offset' , 'date_format' , 'time_format' , 'start_of_week' , 'timezone_string' ),
2010-05-15 04:56:56 +00: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 14:31:18 +00: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-04 01:11:18 +00:00
'privacy' => array ( 'blog_public' ),
2008-11-03 06:27:42 +00: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 05:36:11 +00: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-04 01:11:18 +00:00
'options' => array ( '' ) );
2010-01-25 21:33:49 +00:00
$mail_options = array ( 'mailserver_url' , 'mailserver_port' , 'mailserver_login' , 'mailserver_pass' );
2010-03-02 10:31:06 +00:00
$uploads_options = array ( 'uploads_use_yearmonth_folders' , 'upload_path' , 'upload_url_path' );
2010-01-25 21:33:49 +00:00
if ( ! is_multisite () ) {
2010-03-09 10:57:49 +00:00
if ( ! defined ( 'WP_SITEURL' ) )
$whitelist_options [ 'general' ][] = 'siteurl' ;
if ( ! defined ( 'WP_HOME' ) )
$whitelist_options [ 'general' ][] = 'home' ;
2010-01-25 21:33:49 +00: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 10:31:06 +00:00
$whitelist_options [ 'media' ] = array_merge ( $whitelist_options [ 'media' ], $uploads_options );
2010-01-25 21:33:49 +00:00
} else {
$whitelist_options [ 'general' ][] = 'new_admin_email' ;
$whitelist_options [ 'general' ][] = 'WPLANG' ;
$whitelist_options [ 'general' ][] = 'language' ;
2010-03-09 10:57:49 +00:00
if ( apply_filters ( 'enable_post_by_email_configuration' , true ) )
2010-01-25 21:33:49 +00:00
$whitelist_options [ 'writing' ] = array_merge ( $whitelist_options [ 'writing' ], $mail_options );
$whitelist_options [ 'misc' ] = array ();
}
2008-09-04 01:11:18 +00:00
$whitelist_options = apply_filters ( 'whitelist_options' , $whitelist_options );
2010-03-21 07:38:10 +00:00
/*
2010-02-17 17:50:42 +00:00
* If $_GET['action'] == 'update' we are saving settings sent from a settings page
*/
2010-03-09 10:57:49 +00:00
if ( 'update' == $action ) {
2010-03-21 07:38:10 +00:00
if ( 'options' == $option_page && ! isset ( $_POST [ 'option_page' ] ) ) { // This is for back compat and will eventually be removed.
$unregistered = true ;
2008-10-20 00:40:36 +00:00
check_admin_referer ( 'update-options' );
2010-03-21 07:38:10 +00:00
} else {
$unregistered = false ;
2010-03-09 10:57:49 +00:00
check_admin_referer ( $option_page . '-options' );
2010-03-21 07:38:10 +00:00
}
2005-11-30 07:27:39 +00:00
2008-09-04 01:11:18 +00:00
if ( ! isset ( $whitelist_options [ $option_page ] ) )
2010-01-21 21:37:43 +00:00
wp_die ( __ ( 'Error: options page not found.' ) );
2008-09-04 01:11:18 +00:00
2010-03-21 07:38:10 +00:00
if ( 'options' == $option_page ) {
2010-03-16 20:59:26 +00:00
if ( is_multisite () && ! is_super_admin () )
2010-03-15 22:00:48 +00:00
wp_die ( __ ( 'You do not have sufficient permissions to modify unregistered settings for this site.' ) );
2010-03-16 20:59:26 +00:00
$options = explode ( ',' , stripslashes ( $_POST [ 'page_options' ] ) );
} else {
2008-09-04 01:11:18 +00:00
$options = $whitelist_options [ $option_page ];
2010-03-16 20:59:26 +00:00
}
2004-02-13 09:59:47 +00:00
2008-10-13 18:32:16 +00:00
// Handle custom date/time formats
if ( 'general' == $option_page ) {
2008-10-14 01:43:04 +00:00
if ( ! empty ( $_POST [ 'date_format' ]) && isset ( $_POST [ 'date_format_custom' ]) && '\c\u\s\t\o\m' == stripslashes ( $_POST [ 'date_format' ] ) )
2008-10-13 18:32:16 +00:00
$_POST [ 'date_format' ] = $_POST [ 'date_format_custom' ];
2008-10-14 01:43:04 +00:00
if ( ! empty ( $_POST [ 'time_format' ]) && isset ( $_POST [ 'time_format_custom' ]) && '\c\u\s\t\o\m' == stripslashes ( $_POST [ 'time_format' ] ) )
2008-10-13 18:32:16 +00:00
$_POST [ 'time_format' ] = $_POST [ 'time_format_custom' ];
2009-12-23 14:16:36 +00: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 18:32:16 +00:00
}
if ( $options ) {
foreach ( $options as $option ) {
2010-03-21 01:49:00 +00:00
if ( $unregistered )
2010-04-11 10:41:54 +00: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-21 01:49:00 +00:00
2006-01-09 22:24:57 +00:00
$option = trim ( $option );
2008-11-04 03:22:24 +00:00
$value = null ;
if ( isset ( $_POST [ $option ]) )
$value = $_POST [ $option ];
2010-03-09 10:57:49 +00:00
if ( ! is_array ( $value ) )
$value = trim ( $value );
2007-08-16 19:55:19 +00:00
$value = stripslashes_deep ( $value );
2006-09-08 21:42:05 +00:00
update_option ( $option , $value );
2006-01-09 22:24:57 +00:00
}
}
2007-06-14 02:25:30 +00:00
2010-02-17 17:50:42 +00:00
/**
* Handle settings errors and return to options page
*/
// 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 10:59:20 +00:00
$goback = add_query_arg ( 'settings-updated' , 'true' , wp_get_referer () );
2008-10-13 18:32:16 +00:00
wp_redirect ( $goback );
2010-03-09 10:57:49 +00:00
exit ;
}
2010-01-12 21:11:52 +00:00
2010-04-18 06:14:45 +00:00
include ( './admin-header.php' ); ?>
2004-04-11 08:15:10 +00:00
2003-06-11 22:59:14 +00:00
<div class="wrap">
2008-11-26 23:35:23 +00:00
<?php screen_icon(); ?>
2010-02-27 22:50:00 +00:00
<h2><?php esc_html_e('All Settings'); ?></h2>
2006-10-04 11:28:38 +00:00
<form name="form" action="options.php" method="post" id="all-options">
2008-09-04 01:11:18 +00:00
<?php wp_nonce_field('options-options') ?>
2003-12-17 01:07:40 +00:00
<input type="hidden" name="action" value="update" />
2008-09-04 01:11:18 +00:00
<input type='hidden' name='option_page' value='options' />
2008-02-24 04:33:10 +00:00
<table class="form-table">
2003-06-11 22:59:14 +00:00
<?php
2010-02-27 22:50:00 +00:00
$options = $wpdb->get_results( "SELECT * FROM $wpdb->options ORDER BY option_name" );
2004-04-24 21:21:19 +00:00
2010-02-27 22:50:00 +00:00
foreach ( (array) $options as $option ) :
2010-03-11 17:12:23 +00:00
$disabled = false;
2010-01-18 20:34:48 +00:00
if ( $option->option_name == '' )
2010-01-12 21:11:52 +00:00
continue;
2010-02-27 22:50:00 +00:00
if ( is_serialized( $option->option_value ) ) {
if ( is_serialized_string( $option->option_value ) ) {
2006-10-12 23:54:36 +00:00
// this is a serialized string, so we should display it
2010-02-27 22:50:00 +00:00
$value = maybe_unserialize( $option->option_value );
2006-10-12 23:54:36 +00:00
$options_to_update[] = $option->option_name;
$class = 'all-options';
} else {
$value = 'SERIALIZED DATA';
2010-03-11 17:12:23 +00:00
$disabled = true;
2006-10-12 23:54:36 +00:00
$class = 'all-options disabled';
}
} else {
2007-08-01 19:24:51 +00:00
$value = $option->option_value;
2006-10-12 23:54:36 +00:00
$options_to_update[] = $option->option_name;
$class = 'all-options';
}
2010-02-27 22:50:00 +00:00
$name = esc_attr( $option->option_name );
2004-09-05 00:24:28 +00:00
echo "
<tr>
2010-02-27 22:54:40 +00:00
<th scope='row'><label for='$name'>" . esc_html( $option->option_name ) . "</label></th>
2006-10-04 11:28:38 +00:00
<td>";
2010-02-27 22:50:00 +00:00
if ( strpos( $value, "\n" ) !== false )
2010-11-17 17:12:01 +00:00
echo "<textarea class='$class' name='$name' id='$name' cols='30' rows='5'>" . esc_textarea( $value ) . "</textarea>";
2010-02-27 22:50:00 +00:00
else
2010-03-11 17:12:23 +00:00
echo "<input class='regular-text $class' type='text' name='$name' id='$name' value='" . esc_attr( $value ) . "'" . disabled( $disabled, true, false ) . " />";
2006-10-04 11:28:38 +00:00
echo "</td>
2004-09-05 00:24:28 +00:00
</tr>";
2004-04-24 21:21:19 +00:00
endforeach;
2003-06-11 22:59:14 +00:00
?>
</table>
2010-10-17 18:24:34 +00:00
<input type="hidden" name="page_options" value="<?php echo esc_attr( implode( ',', $options_to_update ) ); ?>" />
2010-10-28 21:56:43 +00:00
<?php submit_button( __( 'Save Changes' ), 'primary', 'Update' ); ?>
2010-10-17 18:24:34 +00:00
2003-12-17 01:07:40 +00:00
</form>
2003-06-11 22:59:14 +00:00
</div>
2004-09-05 00:24:28 +00:00
2003-06-11 22:59:14 +00:00
<?php
2010-04-18 06:14:45 +00:00
include('./admin-footer.php');
2004-09-17 13:05:06 +00:00
?>