Ticket #18285: 18285.2.diff
| File 18285.2.diff, 11.1 KB (added by , 15 years ago) |
|---|
-
wp-admin/admin.php
108 108 if ( current_user_can( 'manage_options' ) ) 109 109 @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) ); 110 110 111 if ( function_exists( '_admin_init' ) ) 112 call_user_func( '_admin_init' ); 113 111 114 do_action('admin_init'); 112 115 113 116 if ( isset($plugin_page) ) { -
wp-admin/options-media.php
6 6 * @subpackage Administration 7 7 */ 8 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 site.' ) ); 14 15 $title = __('Media Settings'); 16 $parent_file = 'options-general.php'; 17 18 add_contextual_help($current_screen, 19 '<p>' . __('You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.') . '</p>' . 20 '<p>' . __('The Embed option allows you embed a video, image, or other media content into your content automatically by typing the URL (of the web page where the file lives) on its own line when you create your content.') . '</p>' . 21 ( is_multisite() ? '' : '<p>' . __('Uploading Options gives you folder and path choices for storing your files in your installation’s directory.') . '</p>' ) . 22 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' . 23 '<p><strong>' . __('For more information:') . '</strong></p>' . 24 '<p>' . __('<a href="http://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' . 25 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 26 ); 27 28 include('./admin-header.php'); 29 30 ?> 31 32 <div class="wrap"> 33 <?php screen_icon(); ?> 34 <h2><?php echo esc_html( $title ); ?></h2> 35 36 <form action="options.php" method="post"> 37 <?php settings_fields('media'); ?> 38 39 <h3><?php _e('Image sizes') ?></h3> 40 <p><?php _e('The sizes listed below determine the maximum dimensions in pixels to use when inserting an image into the body of a post.'); ?></p> 41 42 <table class="form-table"> 43 <tr valign="top"> 44 <th scope="row"><?php _e('Thumbnail size') ?></th> 45 <td> 9 function setting_thumbnail_size() { ?> 46 10 <label for="thumbnail_size_w"><?php _e('Width'); ?></label> 47 11 <input name="thumbnail_size_w" type="text" id="thumbnail_size_w" value="<?php form_option('thumbnail_size_w'); ?>" class="small-text" /> 48 12 <label for="thumbnail_size_h"><?php _e('Height'); ?></label> 49 13 <input name="thumbnail_size_h" type="text" id="thumbnail_size_h" value="<?php form_option('thumbnail_size_h'); ?>" class="small-text" /><br /> 50 14 <input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked('1', get_option('thumbnail_crop')); ?>/> 51 15 <label for="thumbnail_crop"><?php _e('Crop thumbnail to exact dimensions (normally thumbnails are proportional)'); ?></label> 52 < /td>53 </tr> 16 <?php 17 } 54 18 55 <tr valign="top"> 56 <th scope="row"><?php _e('Medium size') ?></th> 57 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Medium size'); ?></span></legend> 19 function setting_medium_size() { ?> 20 <fieldset><legend class="screen-reader-text"><span><?php _e('Medium size'); ?></span></legend> 58 21 <label for="medium_size_w"><?php _e('Max Width'); ?></label> 59 22 <input name="medium_size_w" type="text" id="medium_size_w" value="<?php form_option('medium_size_w'); ?>" class="small-text" /> 60 23 <label for="medium_size_h"><?php _e('Max Height'); ?></label> 61 24 <input name="medium_size_h" type="text" id="medium_size_h" value="<?php form_option('medium_size_h'); ?>" class="small-text" /> 62 </fieldset></td> 63 </tr> 25 </fieldset> 26 <?php 27 } 64 28 65 <tr valign="top"> 66 <th scope="row"><?php _e('Large size') ?></th> 67 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Large size'); ?></span></legend> 29 function setting_large_size() { ?> 30 <fieldset><legend class="screen-reader-text"><span><?php _e('Large size'); ?></span></legend> 68 31 <label for="large_size_w"><?php _e('Max Width'); ?></label> 69 32 <input name="large_size_w" type="text" id="large_size_w" value="<?php form_option('large_size_w'); ?>" class="small-text" /> 70 33 <label for="large_size_h"><?php _e('Max Height'); ?></label> 71 34 <input name="large_size_h" type="text" id="large_size_h" value="<?php form_option('large_size_h'); ?>" class="small-text" /> 72 </fieldset></td> 73 </tr> 35 </fieldset> 36 <?php 37 } 74 38 75 <?php do_settings_fields('media', 'default'); ?> 76 </table> 77 78 <h3><?php _e('Embeds') ?></h3> 79 80 <table class="form-table"> 81 82 <tr valign="top"> 83 <th scope="row"><?php _e('Auto-embeds'); ?></th> 84 <td><fieldset><legend class="screen-reader-text"><span><?php _e('When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube.'); ?></span></legend> 39 function setting_auto_embed() { ?> 40 <fieldset><legend class="screen-reader-text"><span><?php _e('When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube.'); ?></span></legend> 85 41 <label for="embed_autourls"><input name="embed_autourls" type="checkbox" id="embed_autourls" value="1" <?php checked( '1', get_option('embed_autourls') ); ?>/> <?php _e('When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube.'); ?></label> 86 </fieldset></td> 87 </tr> 42 </fieldset> 43 <?php 44 } 88 45 89 <tr valign="top"> 90 <th scope="row"><?php _e('Maximum embed size') ?></th> 91 <td> 46 function setting_max_embed_size() { ?> 92 47 <label for="embed_size_w"><?php _e('Width'); ?></label> 93 48 <input name="embed_size_w" type="text" id="embed_size_w" value="<?php form_option('embed_size_w'); ?>" class="small-text" /> 94 49 <label for="embed_size_h"><?php _e('Height'); ?></label> 95 50 <input name="embed_size_h" type="text" id="embed_size_h" value="<?php form_option('embed_size_h'); ?>" class="small-text" /> 96 51 <?php if ( !empty($content_width) ) echo '<br />' . __("If the width value is left blank, embeds will default to the max width of your theme."); ?> 97 < /td>98 </tr> 52 <?php 53 } 99 54 100 <?php do_settings_fields('media', 'embeds'); ?> 101 </table> 102 103 <?php if ( !is_multisite() ) : ?> 104 <h3><?php _e('Uploading Files'); ?></h3> 105 <table class="form-table"> 106 <tr valign="top"> 107 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> 108 <td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" /> 55 function setting_upload_path() { ?> 56 <input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" /> 109 57 <span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span> 110 < /td>111 </tr> 58 <?php 59 } 112 60 113 <tr valign="top"> 114 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th> 115 <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" /> 61 function setting_upload_url_patch() { ?> 62 <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" /> 116 63 <span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span> 117 < /td>118 </tr> 64 <?php 65 } 119 66 120 <tr> 121 <th scope="row" colspan="2" class="th-full"> 67 function setting_upload_use_year_month() { ?> 122 68 <label for="uploads_use_yearmonth_folders"> 123 69 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> /> 124 70 <?php _e('Organize my uploads into month- and year-based folders'); ?> 125 71 </label> 126 < /th>127 </tr> 72 <?php 73 } 128 74 129 <?php do_settings_fields('media', 'uploads'); ?> 130 </table> 131 <?php endif; ?> 75 function section_default() { 76 echo '<p>' . __('The sizes listed below determine the maximum dimensions in pixels to use when inserting an image into the body of a post.') . '</p>'; 77 } 132 78 79 function section_embeds() {} 80 81 function section_uploads() {} 82 83 function _admin_init() { 84 add_settings_section( 'default', __('Image sizes'), 'section_default', 'media' ); 85 86 add_settings_field( 'thumbnail-size', __('Thumbnail size'), 'setting_thumbnail_size', 'media', 'default' ); 87 add_settings_field( 'medium-size', __('Medium size'), 'setting_medium_size', 'media', 'default' ); 88 add_settings_field( 'large-size', __('Large size'), 'setting_large_size', 'media', 'default' ); 89 90 add_settings_section( 'embeds', __('Embeds'), 'section_embeds', 'media' ); 91 92 add_settings_field( 'embed_autourls', __('Auto-embeds'), 'setting_auto_embed', 'media', 'embeds' ); 93 add_settings_field( 'max-embed-size', __('Maximum embed size'), 'setting_max_embed_size', 'media', 'embeds' ); 94 95 if ( ! is_multisite() ) { 96 add_settings_section( 'uploads', __('Uploading Files'), 'section_uploads', 'media' ); 97 98 add_settings_field( 'upload_path', __('Store uploads in this folder'), 'setting_upload_path', 'media', 'uploads' ); 99 add_settings_field( 'upload_url_path', __('Full URL path to files'), 'setting_upload_url_path', 'media', 'uploads' ); 100 add_settings_field( 'uploads_use_yearmonth_folders', '', 'setting_upload_use_year_month', 'media', 'uploads' ); 101 } 102 } 103 104 /** WordPress Administration Bootstrap */ 105 require_once('./admin.php'); 106 107 if ( ! current_user_can( 'manage_options' ) ) 108 wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) ); 109 110 $title = __('Media Settings'); 111 $parent_file = 'options-general.php'; 112 113 add_contextual_help($current_screen, 114 '<p>' . __('You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.') . '</p>' . 115 '<p>' . __('The Embed option allows you embed a video, image, or other media content into your content automatically by typing the URL (of the web page where the file lives) on its own line when you create your content.') . '</p>' . 116 ( is_multisite() ? '' : '<p>' . __('Uploading Options gives you folder and path choices for storing your files in your installation’s directory.') . '</p>' ) . 117 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' . 118 '<p><strong>' . __('For more information:') . '</strong></p>' . 119 '<p>' . __('<a href="http://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' . 120 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 121 ); 122 123 include('./admin-header.php'); 124 ?> 125 126 <div class="wrap"> 127 <?php screen_icon(); ?> 128 <h2><?php echo esc_html( $title ); ?></h2> 129 130 <form action="options.php" method="post"> 131 <?php settings_fields('media'); ?> 132 133 133 <?php do_settings_sections('media'); ?> 134 134 135 135 <?php submit_button(); ?> … … 138 138 139 139 </div> 140 140 141 <?php include('./admin-footer.php'); ?> 141 <?php 142 include('./admin-footer.php');
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)