PageRenderTime 51ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/options-general.php

https://bitbucket.org/julianelve/vendor-wordpress
PHP | 327 lines | 272 code | 36 blank | 19 comment | 33 complexity | 461915d367dbaf081e15c727933ee371 MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1, GPL-2.0
  1. <?php
  2. /**
  3. * General settings administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once('./admin.php');
  10. if ( ! current_user_can( 'manage_options' ) )
  11. wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
  12. $title = __('General Settings');
  13. $parent_file = 'options-general.php';
  14. /* translators: date and time format for exact current time, mainly about timezones, see http://php.net/date */
  15. $timezone_format = _x('Y-m-d G:i:s', 'timezone date format');
  16. /**
  17. * Display JavaScript on the page.
  18. *
  19. * @since 3.5.0
  20. */
  21. function options_general_add_js() {
  22. ?>
  23. <script type="text/javascript">
  24. //<![CDATA[
  25. jQuery(document).ready(function($){
  26. $("input[name='date_format']").click(function(){
  27. if ( "date_format_custom_radio" != $(this).attr("id") )
  28. $("input[name='date_format_custom']").val( $(this).val() ).siblings('.example').text( $(this).siblings('span').text() );
  29. });
  30. $("input[name='date_format_custom']").focus(function(){
  31. $("#date_format_custom_radio").attr("checked", "checked");
  32. });
  33. $("input[name='time_format']").click(function(){
  34. if ( "time_format_custom_radio" != $(this).attr("id") )
  35. $("input[name='time_format_custom']").val( $(this).val() ).siblings('.example').text( $(this).siblings('span').text() );
  36. });
  37. $("input[name='time_format_custom']").focus(function(){
  38. $("#time_format_custom_radio").attr("checked", "checked");
  39. });
  40. $("input[name='date_format_custom'], input[name='time_format_custom']").change( function() {
  41. var format = $(this);
  42. format.siblings('.spinner').css('display', 'inline-block'); // show(); can't be used here
  43. $.post(ajaxurl, {
  44. action: 'date_format_custom' == format.attr('name') ? 'date_format' : 'time_format',
  45. date : format.val()
  46. }, function(d) { format.siblings('.spinner').hide(); format.siblings('.example').text(d); } );
  47. });
  48. });
  49. //]]>
  50. </script>
  51. <?php
  52. }
  53. add_action('admin_head', 'options_general_add_js');
  54. $options_help = '<p>' . __('The fields on this screen determine some of the basics of your site setup.') . '</p>' .
  55. '<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>';
  56. if ( ! is_multisite() ) {
  57. $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>' .
  58. '<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>';
  59. }
  60. $options_help .= '<p>' . __('UTC means Coordinated Universal Time.') . '</p>' .
  61. '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>';
  62. get_current_screen()->add_help_tab( array(
  63. 'id' => 'overview',
  64. 'title' => __('Overview'),
  65. 'content' => $options_help,
  66. ) );
  67. get_current_screen()->set_help_sidebar(
  68. '<p><strong>' . __('For more information:') . '</strong></p>' .
  69. '<p>' . __('<a href="http://codex.wordpress.org/Settings_General_Screen" target="_blank">Documentation on General Settings</a>') . '</p>' .
  70. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  71. );
  72. include('./admin-header.php');
  73. ?>
  74. <div class="wrap">
  75. <?php screen_icon(); ?>
  76. <h2><?php echo esc_html( $title ); ?></h2>
  77. <form method="post" action="options.php">
  78. <?php settings_fields('general'); ?>
  79. <table class="form-table">
  80. <tr valign="top">
  81. <th scope="row"><label for="blogname"><?php _e('Site Title') ?></label></th>
  82. <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" class="regular-text" /></td>
  83. </tr>
  84. <tr valign="top">
  85. <th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th>
  86. <td><input name="blogdescription" type="text" id="blogdescription" value="<?php form_option('blogdescription'); ?>" class="regular-text" />
  87. <p class="description"><?php _e('In a few words, explain what this site is about.') ?></p></td>
  88. </tr>
  89. <?php if ( !is_multisite() ) { ?>
  90. <tr valign="top">
  91. <th scope="row"><label for="siteurl"><?php _e('WordPress Address (URL)') ?></label></th>
  92. <td><input name="siteurl" type="text" id="siteurl" value="<?php form_option('siteurl'); ?>"<?php disabled( defined( 'WP_SITEURL' ) ); ?> class="regular-text code<?php if ( defined( 'WP_SITEURL' ) ) echo ' disabled' ?>" /></td>
  93. </tr>
  94. <tr valign="top">
  95. <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th>
  96. <td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" />
  97. <p class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></p></td>
  98. </tr>
  99. <tr valign="top">
  100. <th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th>
  101. <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text ltr" />
  102. <p class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></p></td>
  103. </tr>
  104. <tr valign="top">
  105. <th scope="row"><?php _e('Membership') ?></th>
  106. <td> <fieldset><legend class="screen-reader-text"><span><?php _e('Membership') ?></span></legend><label for="users_can_register">
  107. <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_option('users_can_register')); ?> />
  108. <?php _e('Anyone can register') ?></label>
  109. </fieldset></td>
  110. </tr>
  111. <tr valign="top">
  112. <th scope="row"><label for="default_role"><?php _e('New User Default Role') ?></label></th>
  113. <td>
  114. <select name="default_role" id="default_role"><?php wp_dropdown_roles( get_option('default_role') ); ?></select>
  115. </td>
  116. </tr>
  117. <?php } else { ?>
  118. <tr valign="top">
  119. <th scope="row"><label for="new_admin_email"><?php _e('E-mail Address') ?> </label></th>
  120. <td><input name="new_admin_email" type="text" id="new_admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text ltr" />
  121. <p class="description"><?php _e('This address is used for admin purposes. If you change this we will send you an e-mail at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>') ?></p>
  122. <?php
  123. $new_admin_email = get_option( 'new_admin_email' );
  124. if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>
  125. <div class="updated inline">
  126. <p><?php printf( __('There is a pending change of the admin e-mail to <code>%1$s</code>. <a href="%2$s">Cancel</a>'), esc_html( $new_admin_email ), esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) ); ?></p>
  127. </div>
  128. <?php endif; ?>
  129. </td>
  130. </tr>
  131. <?php } ?>
  132. <tr>
  133. <?php
  134. $current_offset = get_option('gmt_offset');
  135. $tzstring = get_option('timezone_string');
  136. $check_zone_info = true;
  137. // Remove old Etc mappings. Fallback to gmt_offset.
  138. if ( false !== strpos($tzstring,'Etc/GMT') )
  139. $tzstring = '';
  140. if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists
  141. $check_zone_info = false;
  142. if ( 0 == $current_offset )
  143. $tzstring = 'UTC+0';
  144. elseif ($current_offset < 0)
  145. $tzstring = 'UTC' . $current_offset;
  146. else
  147. $tzstring = 'UTC+' . $current_offset;
  148. }
  149. ?>
  150. <th scope="row"><label for="timezone_string"><?php _e('Timezone') ?></label></th>
  151. <td>
  152. <select id="timezone_string" name="timezone_string">
  153. <?php echo wp_timezone_choice($tzstring); ?>
  154. </select>
  155. <span id="utc-time"><?php printf(__('<abbr title="Coordinated Universal Time">UTC</abbr> time is <code>%s</code>'), date_i18n($timezone_format, false, 'gmt')); ?></span>
  156. <?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
  157. <span id="local-time"><?php printf(__('Local time is <code>%1$s</code>'), date_i18n($timezone_format)); ?></span>
  158. <?php endif; ?>
  159. <p class="description"><?php _e('Choose a city in the same timezone as you.'); ?></p>
  160. <?php if ($check_zone_info && $tzstring) : ?>
  161. <br />
  162. <span>
  163. <?php
  164. // Set TZ so localtime works.
  165. date_default_timezone_set($tzstring);
  166. $now = localtime(time(), true);
  167. if ( $now['tm_isdst'] )
  168. _e('This timezone is currently in daylight saving time.');
  169. else
  170. _e('This timezone is currently in standard time.');
  171. ?>
  172. <br />
  173. <?php
  174. $allowed_zones = timezone_identifiers_list();
  175. if ( in_array( $tzstring, $allowed_zones) ) {
  176. $found = false;
  177. $date_time_zone_selected = new DateTimeZone($tzstring);
  178. $tz_offset = timezone_offset_get($date_time_zone_selected, date_create());
  179. $right_now = time();
  180. foreach ( timezone_transitions_get($date_time_zone_selected) as $tr) {
  181. if ( $tr['ts'] > $right_now ) {
  182. $found = true;
  183. break;
  184. }
  185. }
  186. if ( $found ) {
  187. echo ' ';
  188. $message = $tr['isdst'] ?
  189. __('Daylight saving time begins on: <code>%s</code>.') :
  190. __('Standard time begins on: <code>%s</code>.');
  191. // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n().
  192. printf( $message, date_i18n(get_option('date_format') . ' ' . get_option('time_format'), $tr['ts'] + ($tz_offset - $tr['offset']) ) );
  193. } else {
  194. _e('This timezone does not observe daylight saving time.');
  195. }
  196. }
  197. // Set back to UTC.
  198. date_default_timezone_set('UTC');
  199. ?>
  200. </span>
  201. <?php endif; ?>
  202. </td>
  203. </tr>
  204. <tr>
  205. <th scope="row"><?php _e('Date Format') ?></th>
  206. <td>
  207. <fieldset><legend class="screen-reader-text"><span><?php _e('Date Format') ?></span></legend>
  208. <?php
  209. $date_formats = array_unique( apply_filters( 'date_formats', array(
  210. __('F j, Y'),
  211. 'Y/m/d',
  212. 'm/d/Y',
  213. 'd/m/Y',
  214. ) ) );
  215. $custom = true;
  216. foreach ( $date_formats as $format ) {
  217. echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='date_format' value='" . esc_attr($format) . "'";
  218. if ( get_option('date_format') === $format ) { // checked() uses "==" rather than "==="
  219. echo " checked='checked'";
  220. $custom = false;
  221. }
  222. echo ' /> <span>' . date_i18n( $format ) . "</span></label><br />\n";
  223. }
  224. echo ' <label><input type="radio" name="date_format" id="date_format_custom_radio" value="\c\u\s\t\o\m"';
  225. checked( $custom );
  226. echo '/> ' . __('Custom:') . ' </label><input type="text" name="date_format_custom" value="' . esc_attr( get_option('date_format') ) . '" class="small-text" /> <span class="example"> ' . date_i18n( get_option('date_format') ) . "</span> <span class='spinner'></span>\n";
  227. echo "\t<p>" . __('<a href="http://codex.wordpress.org/Formatting_Date_and_Time">Documentation on date and time formatting</a>.') . "</p>\n";
  228. ?>
  229. </fieldset>
  230. </td>
  231. </tr>
  232. <tr>
  233. <th scope="row"><?php _e('Time Format') ?></th>
  234. <td>
  235. <fieldset><legend class="screen-reader-text"><span><?php _e('Time Format') ?></span></legend>
  236. <?php
  237. $time_formats = array_unique( apply_filters( 'time_formats', array(
  238. __('g:i a'),
  239. 'g:i A',
  240. 'H:i',
  241. ) ) );
  242. $custom = true;
  243. foreach ( $time_formats as $format ) {
  244. echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='time_format' value='" . esc_attr($format) . "'";
  245. if ( get_option('time_format') === $format ) { // checked() uses "==" rather than "==="
  246. echo " checked='checked'";
  247. $custom = false;
  248. }
  249. echo ' /> <span>' . date_i18n( $format ) . "</span></label><br />\n";
  250. }
  251. echo ' <label><input type="radio" name="time_format" id="time_format_custom_radio" value="\c\u\s\t\o\m"';
  252. checked( $custom );
  253. echo '/> ' . __('Custom:') . ' </label><input type="text" name="time_format_custom" value="' . esc_attr( get_option('time_format') ) . '" class="small-text" /> <span class="example"> ' . date_i18n( get_option('time_format') ) . "</span> <span class='spinner'></span>\n";
  254. ;
  255. ?>
  256. </fieldset>
  257. </td>
  258. </tr>
  259. <tr>
  260. <th scope="row"><label for="start_of_week"><?php _e('Week Starts On') ?></label></th>
  261. <td><select name="start_of_week" id="start_of_week">
  262. <?php
  263. for ($day_index = 0; $day_index <= 6; $day_index++) :
  264. $selected = (get_option('start_of_week') == $day_index) ? 'selected="selected"' : '';
  265. echo "\n\t<option value='" . esc_attr($day_index) . "' $selected>" . $wp_locale->get_weekday($day_index) . '</option>';
  266. endfor;
  267. ?>
  268. </select></td>
  269. </tr>
  270. <?php do_settings_fields('general', 'default'); ?>
  271. <?php
  272. $languages = get_available_languages();
  273. if ( is_multisite() && !empty( $languages ) ):
  274. ?>
  275. <tr valign="top">
  276. <th width="33%" scope="row"><?php _e('Site Language') ?></th>
  277. <td>
  278. <select name="WPLANG" id="WPLANG">
  279. <?php mu_dropdown_languages( $languages, get_option('WPLANG') ); ?>
  280. </select>
  281. </td>
  282. </tr>
  283. <?php
  284. endif;
  285. ?>
  286. </table>
  287. <?php do_settings_sections('general'); ?>
  288. <?php submit_button(); ?>
  289. </form>
  290. </div>
  291. <?php include('./admin-footer.php') ?>