]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-general.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-admin / options-general.php
1 <?php
2 /**
3  * General settings administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 /** WordPress Translation Install API */
13 require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
14
15 if ( ! current_user_can( 'manage_options' ) )
16         wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
17
18 $title = __('General Settings');
19 $parent_file = 'options-general.php';
20 /* translators: date and time format for exact current time, mainly about timezones, see http://php.net/date */
21 $timezone_format = _x('Y-m-d H:i:s', 'timezone date format');
22
23 add_action('admin_head', 'options_general_add_js');
24
25 $options_help = '<p>' . __('The fields on this screen determine some of the basics of your site setup.') . '</p>' .
26         '<p>' . __('Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes.') . '</p>';
27
28 if ( ! is_multisite() ) {
29         $options_help .= '<p>' . __('The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory.') . '</p>' .
30                 '<p>' . __('If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin.') . '</p>';
31 }
32
33 $options_help .= '<p>' . __( 'You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable).' ) . '</p>' .
34         '<p>' . __( 'UTC means Coordinated Universal Time.' ) . '</p>' .
35         '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>';
36
37 get_current_screen()->add_help_tab( array(
38         'id'      => 'overview',
39         'title'   => __('Overview'),
40         'content' => $options_help,
41 ) );
42
43 get_current_screen()->set_help_sidebar(
44         '<p><strong>' . __('For more information:') . '</strong></p>' .
45         '<p>' . __('<a href="https://codex.wordpress.org/Settings_General_Screen" target="_blank">Documentation on General Settings</a>') . '</p>' .
46         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
47 );
48
49 include( ABSPATH . 'wp-admin/admin-header.php' );
50 ?>
51
52 <div class="wrap">
53 <h1><?php echo esc_html( $title ); ?></h1>
54
55 <form method="post" action="options.php" novalidate="novalidate">
56 <?php settings_fields('general'); ?>
57
58 <table class="form-table">
59 <tr>
60 <th scope="row"><label for="blogname"><?php _e('Site Title') ?></label></th>
61 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" class="regular-text" /></td>
62 </tr>
63 <tr>
64 <th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th>
65 <td><input name="blogdescription" type="text" id="blogdescription" aria-describedby="tagline-description" value="<?php form_option('blogdescription'); ?>" class="regular-text" />
66 <p class="description" id="tagline-description"><?php _e( 'In a few words, explain what this site is about.' ) ?></p></td>
67 </tr>
68 <?php if ( !is_multisite() ) { ?>
69 <tr>
70 <th scope="row"><label for="siteurl"><?php _e('WordPress Address (URL)') ?></label></th>
71 <td><input name="siteurl" type="url" id="siteurl" value="<?php form_option( 'siteurl' ); ?>"<?php disabled( defined( 'WP_SITEURL' ) ); ?> class="regular-text code<?php if ( defined( 'WP_SITEURL' ) ) echo ' disabled' ?>" /></td>
72 </tr>
73 <tr>
74 <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th>
75 <td><input name="home" type="url" id="home" aria-describedby="home-description" value="<?php form_option( 'home' ); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" />
76 <?php if ( ! defined( 'WP_HOME' ) ) : ?> 
77 <p class="description" id="home-description"><?php _e( 'Enter the address here if you <a href="https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">want your site home page to be different from your WordPress installation directory.</a>' ); ?></p></td>
78 <?php endif; ?>
79 </tr>
80 <tr>
81 <th scope="row"><label for="admin_email"><?php _e('Email Address') ?> </label></th>
82 <td><input name="admin_email" type="email" id="admin_email" aria-describedby="admin-email-description" value="<?php form_option( 'admin_email' ); ?>" class="regular-text ltr" />
83 <p class="description" id="admin-email-description"><?php _e( 'This address is used for admin purposes, like new user notification.' ) ?></p></td>
84 </tr>
85 <tr>
86 <th scope="row"><?php _e('Membership') ?></th>
87 <td> <fieldset><legend class="screen-reader-text"><span><?php _e('Membership') ?></span></legend><label for="users_can_register">
88 <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_option('users_can_register')); ?> />
89 <?php _e('Anyone can register') ?></label>
90 </fieldset></td>
91 </tr>
92 <tr>
93 <th scope="row"><label for="default_role"><?php _e('New User Default Role') ?></label></th>
94 <td>
95 <select name="default_role" id="default_role"><?php wp_dropdown_roles( get_option('default_role') ); ?></select>
96 </td>
97 </tr>
98 <?php } else { ?>
99 <tr>
100 <th scope="row"><label for="new_admin_email"><?php _e('Email Address') ?> </label></th>
101 <td><input name="new_admin_email" type="email" id="new_admin_email" aria-describedby="new-admin-email-description" value="<?php form_option( 'admin_email' ); ?>" class="regular-text ltr" />
102 <p class="description" id="new-admin-email-description"><?php _e( 'This address is used for admin purposes. If you change this we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ) ?></p>
103 <?php
104 $new_admin_email = get_option( 'new_admin_email' );
105 if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>
106 <div class="updated inline">
107 <p><?php
108         /* translators: 1: new admin email, 2: Cancel link URL */
109         printf( __( 'There is a pending change of the admin email to %1$s. <a href="%2$s">Cancel</a>' ),
110                 '<code>' . esc_html( $new_admin_email ) . '</code>',
111                 esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) )
112         );
113 ?></p>
114 </div>
115 <?php endif; ?>
116 </td>
117 </tr>
118 <?php } ?>
119 <tr>
120 <?php
121 $current_offset = get_option('gmt_offset');
122 $tzstring = get_option('timezone_string');
123
124 $check_zone_info = true;
125
126 // Remove old Etc mappings. Fallback to gmt_offset.
127 if ( false !== strpos($tzstring,'Etc/GMT') )
128         $tzstring = '';
129
130 if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists
131         $check_zone_info = false;
132         if ( 0 == $current_offset )
133                 $tzstring = 'UTC+0';
134         elseif ($current_offset < 0)
135                 $tzstring = 'UTC' . $current_offset;
136         else
137                 $tzstring = 'UTC+' . $current_offset;
138 }
139
140 ?>
141 <th scope="row"><label for="timezone_string"><?php _e('Timezone') ?></label></th>
142 <td>
143
144 <select id="timezone_string" name="timezone_string" aria-describedby="timezone-description">
145 <?php echo wp_timezone_choice($tzstring); ?>
146 </select>
147
148         <span id="utc-time"><?php
149                 /* translators: %s: UTC time */
150                 printf( __( '<abbr title="Coordinated Universal Time">UTC</abbr> time is %s' ),
151                         '<code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code>'
152                 );
153         ?></span>
154 <?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
155         <span id="local-time"><?php
156                 /* translators: %s: local time */
157                 printf( __( 'Local time is %s' ),
158                         '<code>' . date_i18n( $timezone_format ) . '</code>'
159                 );
160         ?></span>
161 <?php endif; ?>
162 <p class="description" id="timezone-description"><?php _e( 'Choose a city in the same timezone as you.' ); ?></p>
163 <?php if ($check_zone_info && $tzstring) : ?>
164 <br />
165 <span>
166         <?php
167         // Set TZ so localtime works.
168         date_default_timezone_set($tzstring);
169         $now = localtime(time(), true);
170         if ( $now['tm_isdst'] )
171                 _e('This timezone is currently in daylight saving time.');
172         else
173                 _e('This timezone is currently in standard time.');
174         ?>
175         <br />
176         <?php
177         $allowed_zones = timezone_identifiers_list();
178
179         if ( in_array( $tzstring, $allowed_zones) ) {
180                 $found = false;
181                 $date_time_zone_selected = new DateTimeZone($tzstring);
182                 $tz_offset = timezone_offset_get($date_time_zone_selected, date_create());
183                 $right_now = time();
184                 foreach ( timezone_transitions_get($date_time_zone_selected) as $tr) {
185                         if ( $tr['ts'] > $right_now ) {
186                             $found = true;
187                                 break;
188                         }
189                 }
190
191                 if ( $found ) {
192                         echo ' ';
193                         $message = $tr['isdst'] ?
194                                 /* translators: %s: date and time  */
195                                 __( 'Daylight saving time begins on: %s.')  :
196                                 /* translators: %s: date and time  */
197                                 __( 'Standard time begins on: %s.' );
198                         // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n().
199                         printf( $message,
200                                 '<code>' . date_i18n(
201                                         get_option( 'date_format' ) . ' ' . get_option( 'time_format' ),
202                                         $tr['ts'] + ( $tz_offset - $tr['offset'] )
203                                 ) . '</code>'
204                         );
205                 } else {
206                         _e( 'This timezone does not observe daylight saving time.' );
207                 }
208         }
209         // Set back to UTC.
210         date_default_timezone_set('UTC');
211         ?>
212         </span>
213 <?php endif; ?>
214 </td>
215
216 </tr>
217 <tr>
218 <th scope="row"><?php _e('Date Format') ?></th>
219 <td>
220         <fieldset><legend class="screen-reader-text"><span><?php _e('Date Format') ?></span></legend>
221 <?php
222         /**
223         * Filter the default date formats.
224         *
225         * @since 2.7.0
226         * @since 4.0.0 Added ISO date standard YYYY-MM-DD format.
227         *
228         * @param array $default_date_formats Array of default date formats.
229         */
230         $date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y' ) ) );
231
232         $custom = true;
233
234         foreach ( $date_formats as $format ) {
235                 echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='date_format' value='" . esc_attr($format) . "'";
236                 if ( get_option('date_format') === $format ) { // checked() uses "==" rather than "==="
237                         echo " checked='checked'";
238                         $custom = false;
239                 }
240                 echo ' /> ' . date_i18n( $format ) . "</label><br />\n";
241         }
242
243         echo '  <label><input type="radio" name="date_format" id="date_format_custom_radio" value="\c\u\s\t\o\m"';
244         checked( $custom );
245         echo '/> ' . __( 'Custom:' ) . '<span class="screen-reader-text"> ' . __( 'enter a custom date format in the following field' ) . "</span></label>\n";
246         echo '<label for="date_format_custom" class="screen-reader-text">' . __( 'Custom date format:' ) . '</label><input type="text" name="date_format_custom" id="date_format_custom" value="' . esc_attr( get_option('date_format') ) . '" class="small-text" /> <span class="screen-reader-text">' . __( 'example:' ) . ' </span><span class="example"> ' . date_i18n( get_option('date_format') ) . "</span> <span class='spinner'></span>\n";
247 ?>
248         </fieldset>
249 </td>
250 </tr>
251 <tr>
252 <th scope="row"><?php _e('Time Format') ?></th>
253 <td>
254         <fieldset><legend class="screen-reader-text"><span><?php _e('Time Format') ?></span></legend>
255 <?php
256         /**
257         * Filter the default time formats.
258         *
259         * @since 2.7.0
260         *
261         * @param array $default_time_formats Array of default time formats.
262         */
263         $time_formats = array_unique( apply_filters( 'time_formats', array( __( 'g:i a' ), 'g:i A', 'H:i' ) ) );
264
265         $custom = true;
266
267         foreach ( $time_formats as $format ) {
268                 echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='time_format' value='" . esc_attr($format) . "'";
269                 if ( get_option('time_format') === $format ) { // checked() uses "==" rather than "==="
270                         echo " checked='checked'";
271                         $custom = false;
272                 }
273                 echo ' /> ' . date_i18n( $format ) . "</label><br />\n";
274         }
275
276         echo '  <label><input type="radio" name="time_format" id="time_format_custom_radio" value="\c\u\s\t\o\m"';
277         checked( $custom );
278         echo '/> ' . __( 'Custom:' ) . '<span class="screen-reader-text"> ' . __( 'enter a custom time format in the following field' ) . "</span></label>\n";
279         echo '<label for="time_format_custom" class="screen-reader-text">' . __( 'Custom time format:' ) . '</label><input type="text" name="time_format_custom" id="time_format_custom" value="' . esc_attr( get_option('time_format') ) . '" class="small-text" /> <span class="screen-reader-text">' . __( 'example:' ) . ' </span><span class="example"> ' . date_i18n( get_option('time_format') ) . "</span> <span class='spinner'></span>\n";
280
281         echo "\t<p>" . __('<a href="https://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.') . "</p>\n";
282 ?>
283         </fieldset>
284 </td>
285 </tr>
286 <tr>
287 <th scope="row"><label for="start_of_week"><?php _e('Week Starts On') ?></label></th>
288 <td><select name="start_of_week" id="start_of_week">
289 <?php
290 /**
291  * @global WP_Locale $wp_locale
292  */
293 global $wp_locale;
294
295 for ($day_index = 0; $day_index <= 6; $day_index++) :
296         $selected = (get_option('start_of_week') == $day_index) ? 'selected="selected"' : '';
297         echo "\n\t<option value='" . esc_attr($day_index) . "' $selected>" . $wp_locale->get_weekday($day_index) . '</option>';
298 endfor;
299 ?>
300 </select></td>
301 </tr>
302 <?php do_settings_fields('general', 'default'); ?>
303
304 <?php
305 $languages = get_available_languages();
306 $translations = wp_get_available_translations();
307 if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPLANG && ! in_array( WPLANG, $languages ) ) {
308         $languages[] = WPLANG;
309 }
310 if ( ! empty( $languages ) || ! empty( $translations ) ) {
311         ?>
312         <tr>
313                 <th width="33%" scope="row"><label for="WPLANG"><?php _e( 'Site Language' ); ?></label></th>
314                 <td>
315                         <?php
316                         $locale = get_locale();
317                         if ( ! in_array( $locale, $languages ) ) {
318                                 $locale = '';
319                         }
320
321                         wp_dropdown_languages( array(
322                                 'name'         => 'WPLANG',
323                                 'id'           => 'WPLANG',
324                                 'selected'     => $locale,
325                                 'languages'    => $languages,
326                                 'translations' => $translations,
327                                 'show_available_translations' => ( ! is_multisite() || is_super_admin() ) && wp_can_install_language_pack(),
328                         ) );
329
330                         // Add note about deprecated WPLANG constant.
331                         if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && $locale !== WPLANG ) {
332                                 if ( is_super_admin() ) {
333                                         ?>
334                                         <p class="description">
335                                                 <strong><?php _e( 'Note:' ); ?></strong> <?php printf( __( 'The %s constant in your %s file is no longer needed.' ), '<code>WPLANG</code>', '<code>wp-config.php</code>' ); ?>
336                                         </p>
337                                         <?php
338                                 }
339                                 _deprecated_argument( 'define()', '4.0', sprintf( __( 'The %s constant in your %s file is no longer needed.' ), 'WPLANG', 'wp-config.php' ) );
340                         }
341                         ?>
342                 </td>
343         </tr>
344         <?php
345 }
346 ?>
347 </table>
348
349 <?php do_settings_sections('general'); ?>
350
351 <?php submit_button(); ?>
352 </form>
353
354 </div>
355
356 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>