WordPress 3.0 beta 1 documentation kindly provided to you by Hay Kranen
| [ Index ] |
PHP Cross Reference of WordPress 3.0 beta 1 |
|
| [ Index ] [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[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 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 action="options.php" method="post"> 27 <?php settings_fields('media'); ?> 28 29 <h3><?php _e('Image sizes') ?></h3> 30 <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> 31 32 <table class="form-table"> 33 <tr valign="top"> 34 <th scope="row"><?php _e('Thumbnail size') ?></th> 35 <td> 36 <label for="thumbnail_size_w"><?php _e('Width'); ?></label> 37 <input name="thumbnail_size_w" type="text" id="thumbnail_size_w" value="<?php form_option('thumbnail_size_w'); ?>" class="small-text" /> 38 <label for="thumbnail_size_h"><?php _e('Height'); ?></label> 39 <input name="thumbnail_size_h" type="text" id="thumbnail_size_h" value="<?php form_option('thumbnail_size_h'); ?>" class="small-text" /><br /> 40 <input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked('1', get_option('thumbnail_crop')); ?>/> 41 <label for="thumbnail_crop"><?php _e('Crop thumbnail to exact dimensions (normally thumbnails are proportional)'); ?></label> 42 </td> 43 </tr> 44 45 <tr valign="top"> 46 <th scope="row"><?php _e('Medium size') ?></th> 47 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Medium size'); ?></span></legend> 48 <label for="medium_size_w"><?php _e('Max Width'); ?></label> 49 <input name="medium_size_w" type="text" id="medium_size_w" value="<?php form_option('medium_size_w'); ?>" class="small-text" /> 50 <label for="medium_size_h"><?php _e('Max Height'); ?></label> 51 <input name="medium_size_h" type="text" id="medium_size_h" value="<?php form_option('medium_size_h'); ?>" class="small-text" /> 52 </fieldset></td> 53 </tr> 54 55 <tr valign="top"> 56 <th scope="row"><?php _e('Large size') ?></th> 57 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Large size'); ?></span></legend> 58 <label for="large_size_w"><?php _e('Max Width'); ?></label> 59 <input name="large_size_w" type="text" id="large_size_w" value="<?php form_option('large_size_w'); ?>" class="small-text" /> 60 <label for="large_size_h"><?php _e('Max Height'); ?></label> 61 <input name="large_size_h" type="text" id="large_size_h" value="<?php form_option('large_size_h'); ?>" class="small-text" /> 62 </fieldset></td> 63 </tr> 64 65 <?php do_settings_fields('media', 'default'); ?> 66 </table> 67 68 <h3><?php _e('Embeds') ?></h3> 69 70 <table class="form-table"> 71 72 <tr valign="top"> 73 <th scope="row"><?php _e('Auto-embeds'); ?></th> 74 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Attempt to automatically embed all plain text URLs'); ?></span></legend> 75 <label for="embed_autourls"><input name="embed_autourls" type="checkbox" id="embed_autourls" value="1" <?php checked( '1', get_option('embed_autourls') ); ?>/> <?php _e('Attempt to automatically embed all plain text URLs'); ?></label> 76 </fieldset></td> 77 </tr> 78 79 <tr valign="top"> 80 <th scope="row"><?php _e('Maximum embed size') ?></th> 81 <td> 82 <label for="embed_size_w"><?php _e('Width'); ?></label> 83 <input name="embed_size_w" type="text" id="embed_size_w" value="<?php form_option('embed_size_w'); ?>" class="small-text" /> 84 <label for="embed_size_h"><?php _e('Height'); ?></label> 85 <input name="embed_size_h" type="text" id="embed_size_h" value="<?php form_option('embed_size_h'); ?>" class="small-text" /> 86 <?php if ( !empty($content_width) ) echo '<br />' . __("If the width value is left blank, embeds will default to the max width of your theme."); ?> 87 </td> 88 </tr> 89 90 <?php do_settings_fields('media', 'embeds'); ?> 91 </table> 92 93 <?php if ( !is_multisite() ) : ?> 94 <h3><?php _e('Uploading Files'); ?></h3> 95 <table class="form-table"> 96 <tr valign="top"> 97 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> 98 <td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" /> 99 <span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span> 100 </td> 101 </tr> 102 103 <tr valign="top"> 104 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th> 105 <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" /> 106 <span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span> 107 </td> 108 </tr> 109 110 <tr> 111 <th scope="row" colspan="2" class="th-full"> 112 <label for="uploads_use_yearmonth_folders"> 113 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> /> 114 <?php _e('Organize my uploads into month- and year-based folders'); ?> 115 </label> 116 </th> 117 </tr> 118 119 <?php do_settings_fields('media', 'uploads'); ?> 120 </table> 121 <?php endif; ?> 122 123 <?php do_settings_sections('media'); ?> 124 125 <p class="submit"> 126 <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" /> 127 </p> 128 129 </form> 130 131 </div> 132 133 <?php include ('./admin-footer.php'); ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Apr 5 14:26:09 2010 | Cross-referenced by PHPXref 0.7 |