2008-09-17 00:37:49 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2008-09-21 23:39:38 +02:00
|
|
|
* Media settings administration panel.
|
2008-09-17 00:37:49 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
|
|
|
require_once('admin.php');
|
|
|
|
|
2009-08-01 23:12:17 +02:00
|
|
|
if ( ! current_user_can('manage_options') )
|
|
|
|
wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
|
|
|
|
|
2008-09-21 21:02:10 +02:00
|
|
|
$title = __('Media Settings');
|
2008-09-17 00:37:49 +02:00
|
|
|
$parent_file = 'options-general.php';
|
|
|
|
|
|
|
|
include('admin-header.php');
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
2008-11-26 14:51:25 +01:00
|
|
|
<?php screen_icon(); ?>
|
2009-05-18 17:11:07 +02:00
|
|
|
<h2><?php echo esc_html( $title ); ?></h2>
|
2008-09-17 00:37:49 +02:00
|
|
|
|
|
|
|
<form action="options.php" method="post">
|
2008-11-28 22:57:58 +01:00
|
|
|
<?php settings_fields('media'); ?>
|
2008-10-14 03:18:52 +02:00
|
|
|
|
2008-09-17 00:37:49 +02:00
|
|
|
<h3><?php _e('Image sizes') ?></h3>
|
2008-11-13 08:54:27 +01:00
|
|
|
<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>
|
2008-09-17 00:37:49 +02:00
|
|
|
|
|
|
|
<table class="form-table">
|
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row"><?php _e('Thumbnail size') ?></th>
|
|
|
|
<td>
|
|
|
|
<label for="thumbnail_size_w"><?php _e('Width'); ?></label>
|
2008-10-28 23:07:39 +01:00
|
|
|
<input name="thumbnail_size_w" type="text" id="thumbnail_size_w" value="<?php form_option('thumbnail_size_w'); ?>" class="small-text" />
|
2008-09-17 00:37:49 +02:00
|
|
|
<label for="thumbnail_size_h"><?php _e('Height'); ?></label>
|
2008-10-28 23:07:39 +01:00
|
|
|
<input name="thumbnail_size_h" type="text" id="thumbnail_size_h" value="<?php form_option('thumbnail_size_h'); ?>" class="small-text" /><br />
|
2008-09-17 00:37:49 +02:00
|
|
|
<input name="thumbnail_crop" type="checkbox" id="thumbnail_crop" value="1" <?php checked('1', get_option('thumbnail_crop')); ?>/>
|
|
|
|
<label for="thumbnail_crop"><?php _e('Crop thumbnail to exact dimensions (normally thumbnails are proportional)'); ?></label>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row"><?php _e('Medium size') ?></th>
|
2009-05-13 00:40:56 +02:00
|
|
|
<td><fieldset><legend class="screen-reader-text"><span><?php _e('Medium size') ?></span></legend>
|
2008-09-17 00:37:49 +02:00
|
|
|
<label for="medium_size_w"><?php _e('Max Width'); ?></label>
|
2008-10-28 23:07:39 +01:00
|
|
|
<input name="medium_size_w" type="text" id="medium_size_w" value="<?php form_option('medium_size_w'); ?>" class="small-text" />
|
2008-09-17 00:37:49 +02:00
|
|
|
<label for="medium_size_h"><?php _e('Max Height'); ?></label>
|
2008-10-28 23:07:39 +01:00
|
|
|
<input name="medium_size_h" type="text" id="medium_size_h" value="<?php form_option('medium_size_h'); ?>" class="small-text" />
|
2008-09-17 00:37:49 +02:00
|
|
|
</fieldset></td>
|
|
|
|
</tr>
|
|
|
|
|
2008-12-09 19:03:31 +01:00
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row"><?php _e('Large size') ?></th>
|
2009-05-13 00:40:56 +02:00
|
|
|
<td><fieldset><legend class="screen-reader-text"><span><?php _e('Large size') ?></span></legend>
|
2008-12-09 19:03:31 +01:00
|
|
|
<label for="large_size_w"><?php _e('Max Width'); ?></label>
|
|
|
|
<input name="large_size_w" type="text" id="large_size_w" value="<?php form_option('large_size_w'); ?>" class="small-text" />
|
|
|
|
<label for="large_size_h"><?php _e('Max Height'); ?></label>
|
|
|
|
<input name="large_size_h" type="text" id="large_size_h" value="<?php form_option('large_size_h'); ?>" class="small-text" />
|
|
|
|
</fieldset></td>
|
|
|
|
</tr>
|
2008-09-17 00:37:49 +02:00
|
|
|
|
|
|
|
<?php do_settings_fields('media', 'default'); ?>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php do_settings_sections('media'); ?>
|
|
|
|
|
|
|
|
<p class="submit">
|
2009-05-05 21:43:53 +02:00
|
|
|
<input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
|
2008-09-17 00:37:49 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php include('./admin-footer.php'); ?>
|