| [ Index ] |
PHP Cross Reference of WordPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Media settings administration panel. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 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 $media_options_help = '<p>' . __('You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.') . '</p>' . 19 '<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.'); 20 21 if ( ! empty( $content_width ) ) 22 $media_options_help .= ' ' . __( 'If you do not set the maximum embed size, it will be automatically sized to fit into your content area.' ); 23 24 $media_options_help .= '</p>'; 25 26 if ( ! is_multisite() ) { 27 $media_options_help .= '<p>' . __('Uploading Files allows you to choose the folder and path for storing your uploaded files.') . '</p>'; 28 } 29 30 $media_options_help .= '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'; 31 32 get_current_screen()->add_help_tab( array( 33 'id' => 'overview', 34 'title' => __('Overview'), 35 'content' => $media_options_help, 36 ) ); 37 38 get_current_screen()->set_help_sidebar( 39 '<p><strong>' . __('For more information:') . '</strong></p>' . 40 '<p>' . __('<a href="http://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' . 41 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 42 ); 43 44 include ('./admin-header.php'); 45 46 ?> 47 48 <div class="wrap"> 49 <?php screen_icon(); ?> 50 <h2><?php echo esc_html( $title ); ?></h2> 51 52 <form action="options.php" method="post"> 53 <?php settings_fields('media'); ?> 54 55 <h3><?php _e('Image sizes') ?></h3> 56 <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> 57 58 <table class="form-table"> 59 <tr valign="top"> 60 <th scope="row"><?php _e('Thumbnail size') ?></th> 61 <td> 62 <label for="thumbnail_size_w"><?php _e('Width'); ?></label> 63 <input name="thumbnail_size_w" type="number" step="1" min="0" id="thumbnail_size_w" value="<?php form_option('thumbnail_size_w'); ?>" class="small-text" /> 64 <label for="thumbnail_size_h"><?php _e('Height'); ?></label> 65 <input name="thumbnail_size_h" type="number" step="1" min="0" id="thumbnail_size_h" value="<?php form_option('thumbnail_size_h'); ?>" class="small-text" /><br /> 66 <input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked('1', get_option('thumbnail_crop')); ?>/> 67 <label for="thumbnail_crop"><?php _e('Crop thumbnail to exact dimensions (normally thumbnails are proportional)'); ?></label> 68 </td> 69 </tr> 70 71 <tr valign="top"> 72 <th scope="row"><?php _e('Medium size') ?></th> 73 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Medium size'); ?></span></legend> 74 <label for="medium_size_w"><?php _e('Max Width'); ?></label> 75 <input name="medium_size_w" type="number" step="1" min="0" id="medium_size_w" value="<?php form_option('medium_size_w'); ?>" class="small-text" /> 76 <label for="medium_size_h"><?php _e('Max Height'); ?></label> 77 <input name="medium_size_h" type="number" step="1" min="0" id="medium_size_h" value="<?php form_option('medium_size_h'); ?>" class="small-text" /> 78 </fieldset></td> 79 </tr> 80 81 <tr valign="top"> 82 <th scope="row"><?php _e('Large size') ?></th> 83 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Large size'); ?></span></legend> 84 <label for="large_size_w"><?php _e('Max Width'); ?></label> 85 <input name="large_size_w" type="number" step="1" min="0" id="large_size_w" value="<?php form_option('large_size_w'); ?>" class="small-text" /> 86 <label for="large_size_h"><?php _e('Max Height'); ?></label> 87 <input name="large_size_h" type="number" step="1" min="0" id="large_size_h" value="<?php form_option('large_size_h'); ?>" class="small-text" /> 88 </fieldset></td> 89 </tr> 90 91 <?php do_settings_fields('media', 'default'); ?> 92 </table> 93 94 <h3><?php _e('Embeds') ?></h3> 95 96 <table class="form-table"> 97 98 <tr valign="top"> 99 <th scope="row"><?php _e('Auto-embeds'); ?></th> 100 <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> 101 <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> 102 </fieldset></td> 103 </tr> 104 105 <tr valign="top"> 106 <th scope="row"><?php _e('Maximum embed size') ?></th> 107 <td> 108 <label for="embed_size_w"><?php _e('Width'); ?></label> 109 <input name="embed_size_w" type="number" step="1" min="0" id="embed_size_w" value="<?php form_option('embed_size_w'); ?>" class="small-text" /> 110 <label for="embed_size_h"><?php _e('Height'); ?></label> 111 <input name="embed_size_h" type="number" step="1" min="0" id="embed_size_h" value="<?php form_option('embed_size_h'); ?>" class="small-text" /> 112 <?php if ( ! empty( $content_width ) ) 113 echo '<p class="description">' . __( 'If the width value is left blank, embeds will default to the max width of your theme.' ) . '</p>'; 114 ?> 115 </td> 116 </tr> 117 118 <?php do_settings_fields('media', 'embeds'); ?> 119 </table> 120 121 <?php if ( !is_multisite() ) : ?> 122 <h3><?php _e('Uploading Files'); ?></h3> 123 <table class="form-table"> 124 <tr valign="top"> 125 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> 126 <td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" /> 127 <p class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></p> 128 </td> 129 </tr> 130 131 <tr valign="top"> 132 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th> 133 <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" /> 134 <p class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></p> 135 </td> 136 </tr> 137 138 <tr> 139 <th scope="row" colspan="2" class="th-full"> 140 <label for="uploads_use_yearmonth_folders"> 141 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> /> 142 <?php _e('Organize my uploads into month- and year-based folders'); ?> 143 </label> 144 </th> 145 </tr> 146 147 <?php do_settings_fields('media', 'uploads'); ?> 148 </table> 149 <?php endif; ?> 150 151 <?php do_settings_sections('media'); ?> 152 153 <?php submit_button(); ?> 154 155 </form> 156 157 </div> 158 159 <?php include ('./admin-footer.php'); ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri May 25 03:56:23 2012 | Hosted by follow the white rabbit. |