Make WordPress Core

Ticket #11687: 11687.diff

File 11687.diff, 7.5 KB (added by scribu, 15 years ago)
  • wp-admin/options-media.php

     
    2424<h2><?php echo esc_html( $title ); ?></h2>
    2525
    2626<form action="options.php" method="post">
     27<?php settings_fields('misc'); ?>
     28
     29<h3><?php _e('Uploading Files'); ?></h3>
     30<table class="form-table">
     31<tr valign="top">
     32<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
     33<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
     34<span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span>
     35</td>
     36</tr>
     37
     38<tr valign="top">
     39<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
     40<td><input name="upload_url_path" type="text" id="upload_url_path" value="<?php echo esc_attr( get_option('upload_url_path')); ?>" class="regular-text code" />
     41<span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span>
     42</td>
     43</tr>
     44
     45<tr>
     46<th scope="row" colspan="2" class="th-full">
     47<label for="uploads_use_yearmonth_folders">
     48<input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> />
     49<?php _e('Organize my uploads into month- and year-based folders'); ?>
     50</label>
     51</th>
     52</tr>
     53<?php do_settings_fields('misc', 'default'); ?>
     54</table>
     55
     56<table class="form-table">
     57
     58<tr>
     59<th scope="row" class="th-full">
     60<label for="use_linksupdate">
     61<input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1"<?php checked('1', get_option('use_linksupdate')); ?> />
     62<?php _e('Track Links&#8217; Update Times') ?>
     63</label>
     64</th>
     65</tr>
     66
     67</table>
     68
     69<?php do_settings_sections('misc'); ?>
     70
    2771<?php settings_fields('media'); ?>
    2872
    2973<h3><?php _e('Image sizes') ?></h3>
  • wp-admin/options-misc.php

     
    11<?php
    22/**
    3  * Miscellaneous settings administration panel.
     3 * Miscellaneous settings administration panel. (deprecated)
    44 *
    55 * @package WordPress
    66 * @subpackage Administration
    77 */
    8 
    9 /** WordPress Administration Bootstrap */
    10 require_once('admin.php');
    11 
    12 if ( ! current_user_can('manage_options') )
    13         wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
    14 
    15 $title = __('Miscellaneous Settings');
    16 $parent_file = 'options-general.php';
    17 
    18 include('admin-header.php');
    19 
    20 ?>
    21 
    22 <div class="wrap">
    23 <?php screen_icon(); ?>
    24 <h2><?php echo esc_html( $title ); ?></h2>
    25 
    26 <form method="post" action="options.php">
    27 <?php settings_fields('misc'); ?>
    28 
    29 <h3><?php _e('Uploading Files'); ?></h3>
    30 <table class="form-table">
    31 <tr valign="top">
    32 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
    33 <td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
    34 <span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span>
    35 </td>
    36 </tr>
    37 
    38 <tr valign="top">
    39 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
    40 <td><input name="upload_url_path" type="text" id="upload_url_path" value="<?php echo esc_attr( get_option('upload_url_path')); ?>" class="regular-text code" />
    41 <span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span>
    42 </td>
    43 </tr>
    44 
    45 <tr>
    46 <th scope="row" colspan="2" class="th-full">
    47 <label for="uploads_use_yearmonth_folders">
    48 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> />
    49 <?php _e('Organize my uploads into month- and year-based folders'); ?>
    50 </label>
    51 </th>
    52 </tr>
    53 <?php do_settings_fields('misc', 'default'); ?>
    54 </table>
    55 
    56 <table class="form-table">
    57 
    58 <tr>
    59 <th scope="row" class="th-full">
    60 <label for="use_linksupdate">
    61 <input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1"<?php checked('1', get_option('use_linksupdate')); ?> />
    62 <?php _e('Track Links&#8217; Update Times') ?>
    63 </label>
    64 </th>
    65 </tr>
    66 
    67 </table>
    68 
    69 <?php do_settings_sections('misc'); ?>
    70 
    71 <p class="submit">
    72         <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
    73 </p>
    74 
    75 </form>
    76 </div>
    77 
    78 <?php include('./admin-footer.php'); ?>
  • wp-admin/menu.php

     
    112112        $submenu['options-general.php'][30] = array(__('Media'), 'manage_options', 'options-media.php');
    113113        $submenu['options-general.php'][35] = array(__('Privacy'), 'manage_options', 'options-privacy.php');
    114114        $submenu['options-general.php'][40] = array(__('Permalinks'), 'manage_options', 'options-permalink.php');
    115         $submenu['options-general.php'][45] = array(__('Miscellaneous'), 'manage_options', 'options-misc.php');
    116115
    117116$_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group
    118117
  • wp-admin/options.php

     
    2424$whitelist_options = array(
    2525        'general' => array( 'blogname', 'blogdescription', 'admin_email', 'users_can_register', 'gmt_offset', 'date_format', 'time_format', 'start_of_week', 'default_role', 'timezone_string' ),
    2626        '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' ),
    27         'misc' => array( 'use_linksupdate', 'uploads_use_yearmonth_folders', 'upload_path', 'upload_url_path' ),
    28         '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' ),
     27        'misc' => array(),
     28        'media' => array( 'use_linksupdate', 'uploads_use_yearmonth_folders', 'upload_path', 'upload_url_path', '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' ),
    2929        'privacy' => array( 'blog_public' ),
    3030        'reading' => array( 'posts_per_page', 'posts_per_rss', 'rss_use_excerpt', 'blog_charset', 'show_on_front', 'page_on_front', 'page_for_posts' ),
    3131        'writing' => array( 'default_post_edit_rows', 'use_smilies', 'ping_sites', 'mailserver_url', 'mailserver_port', 'mailserver_login', 'mailserver_pass', 'default_category', 'default_email_category', 'use_balanceTags', 'default_link_category', 'enable_app', 'enable_xmlrpc' ),