Options: Hide the week starts on setting for installs that have the default setting already.

The default setting is the value of `$wp_locale->start_of_week` which holds the value per locale, see [35336].

Props swissspidy, ocean90.
Fixes #28344.

git-svn-id: https://develop.svn.wordpress.org/trunk@35337 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90)
2015-10-21 17:38:44 +00:00
parent 597e3630f3
commit 05356ff7dc
3 changed files with 45 additions and 20 deletions

View File

@@ -53,7 +53,17 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
<h1><?php echo esc_html( $title ); ?></h1>
<form method="post" action="options.php" novalidate="novalidate">
<?php settings_fields('general'); ?>
<?php
settings_fields( 'general' );
/**
* @global WP_Locale $wp_locale
*/
global $wp_locale;
if ( get_option( 'start_of_week' ) != $wp_locale->start_of_week ) {
add_settings_field( 'start_of_week', __( 'Week Starts On' ), 'options_general_start_of_week', 'general', 'default', array( 'label_for' => 'start_of_week' ) );
}
?>
<table class="form-table">
<tr>
@@ -274,23 +284,8 @@ if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><label for="start_of_week"><?php _e('Week Starts On') ?></label></th>
<td><select name="start_of_week" id="start_of_week">
<?php
/**
* @global WP_Locale $wp_locale
*/
global $wp_locale;
for ($day_index = 0; $day_index <= 6; $day_index++) :
$selected = (get_option('start_of_week') == $day_index) ? 'selected="selected"' : '';
echo "\n\t<option value='" . esc_attr($day_index) . "' $selected>" . $wp_locale->get_weekday($day_index) . '</option>';
endfor;
?>
</select></td>
</tr>
<?php do_settings_fields('general', 'default'); ?>
<?php do_settings_fields( 'general', 'default' ); ?>
<?php
$languages = get_available_languages();