]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/media.php
WordPress 3.5.1
[autoinstalls/wordpress.git] / wp-admin / includes / media.php
1 <?php
2 /**
3  * WordPress Administration Media API.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * Defines the default media upload tabs
11  *
12  * @since 2.5.0
13  *
14  * @return array default tabs
15  */
16 function media_upload_tabs() {
17         $_default_tabs = array(
18                 'type' => __('From Computer'), // handler action suffix => tab text
19                 'type_url' => __('From URL'),
20                 'gallery' => __('Gallery'),
21                 'library' => __('Media Library')
22         );
23
24         return apply_filters('media_upload_tabs', $_default_tabs);
25 }
26
27 /**
28  * Adds the gallery tab back to the tabs array if post has image attachments
29  *
30  * @since 2.5.0
31  *
32  * @param array $tabs
33  * @return array $tabs with gallery if post has image attachment
34  */
35 function update_gallery_tab($tabs) {
36         global $wpdb;
37
38         if ( !isset($_REQUEST['post_id']) ) {
39                 unset($tabs['gallery']);
40                 return $tabs;
41         }
42
43         $post_id = intval($_REQUEST['post_id']);
44
45         if ( $post_id )
46                 $attachments = intval( $wpdb->get_var( $wpdb->prepare( "SELECT count(*) FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' AND post_parent = %d", $post_id ) ) );
47
48         if ( empty($attachments) ) {
49                 unset($tabs['gallery']);
50                 return $tabs;
51         }
52
53         $tabs['gallery'] = sprintf(__('Gallery (%s)'), "<span id='attachments-count'>$attachments</span>");
54
55         return $tabs;
56 }
57 add_filter('media_upload_tabs', 'update_gallery_tab');
58
59 /**
60  * {@internal Missing Short Description}}
61  *
62  * @since 2.5.0
63  */
64 function the_media_upload_tabs() {
65         global $redir_tab;
66         $tabs = media_upload_tabs();
67         $default = 'type';
68
69         if ( !empty($tabs) ) {
70                 echo "<ul id='sidemenu'>\n";
71                 if ( isset($redir_tab) && array_key_exists($redir_tab, $tabs) )
72                         $current = $redir_tab;
73                 elseif ( isset($_GET['tab']) && array_key_exists($_GET['tab'], $tabs) )
74                         $current = $_GET['tab'];
75                 else
76                         $current = apply_filters('media_upload_default_tab', $default);
77
78                 foreach ( $tabs as $callback => $text ) {
79                         $class = '';
80
81                         if ( $current == $callback )
82                                 $class = " class='current'";
83
84                         $href = add_query_arg(array('tab' => $callback, 's' => false, 'paged' => false, 'post_mime_type' => false, 'm' => false));
85                         $link = "<a href='" . esc_url($href) . "'$class>$text</a>";
86                         echo "\t<li id='" . esc_attr("tab-$callback") . "'>$link</li>\n";
87                 }
88                 echo "</ul>\n";
89         }
90 }
91
92 /**
93  * {@internal Missing Short Description}}
94  *
95  * @since 2.5.0
96  *
97  * @param integer $id image attachment id
98  * @param string $caption image caption
99  * @param string $alt image alt attribute
100  * @param string $title image title attribute
101  * @param string $align image css alignment property
102  * @param string $url image src url
103  * @param string|bool $rel image rel attribute
104  * @param string $size image size (thumbnail, medium, large, full or added  with add_image_size() )
105  * @return string the html to insert into editor
106  */
107 function get_image_send_to_editor($id, $caption, $title, $align, $url='', $rel = false, $size='medium', $alt = '') {
108
109         $html = get_image_tag($id, $alt, '', $align, $size);
110
111         $rel = $rel ? ' rel="attachment wp-att-' . esc_attr($id).'"' : '';
112
113         if ( $url )
114                 $html = '<a href="' . esc_attr($url) . "\"$rel>$html</a>";
115
116         $html = apply_filters( 'image_send_to_editor', $html, $id, $caption, $title, $align, $url, $size, $alt );
117
118         return $html;
119 }
120
121 /**
122  * Adds image shortcode with caption to editor
123  *
124  * @since 2.6.0
125  *
126  * @param string $html
127  * @param integer $id
128  * @param string $caption image caption
129  * @param string $alt image alt attribute
130  * @param string $title image title attribute
131  * @param string $align image css alignment property
132  * @param string $url image src url
133  * @param string $size image size (thumbnail, medium, large, full or added with add_image_size() )
134  * @return string
135  */
136 function image_add_caption( $html, $id, $caption, $title, $align, $url, $size, $alt = '' ) {
137
138         if ( empty($caption) || apply_filters( 'disable_captions', '' ) )
139                 return $html;
140
141         $id = ( 0 < (int) $id ) ? 'attachment_' . $id : '';
142
143         if ( ! preg_match( '/width=["\']([0-9]+)/', $html, $matches ) )
144                 return $html;
145
146         $width = $matches[1];
147
148         $caption = str_replace( array("\r\n", "\r"), "\n", $caption);
149         $caption = preg_replace_callback( '/<[a-zA-Z0-9]+(?: [^<>]+>)*/', '_cleanup_image_add_caption', $caption );
150         // convert any remaining line breaks to <br>
151         $caption = preg_replace( '/[ \n\t]*\n[ \t]*/', '<br />', $caption );
152
153         $html = preg_replace( '/(class=["\'][^\'"]*)align(none|left|right|center)\s?/', '$1', $html );
154         if ( empty($align) )
155                 $align = 'none';
156
157         $shcode = '[caption id="' . $id . '" align="align' . $align     . '" width="' . $width . '"]' . $html . ' ' . $caption . '[/caption]';
158
159         return apply_filters( 'image_add_caption_shortcode', $shcode, $html );
160 }
161 add_filter( 'image_send_to_editor', 'image_add_caption', 20, 8 );
162
163 /**
164  * Private preg_replace callback used in image_add_caption()
165  *
166  * @access private
167  * @since 3.4.0
168  */
169 function _cleanup_image_add_caption( $matches ) {
170         // remove any line breaks from inside the tags
171         return preg_replace( '/[\r\n\t]+/', ' ', $matches[0] );
172 }
173
174 /**
175  * Adds image html to editor
176  *
177  * @since 2.5.0
178  *
179  * @param string $html
180  */
181 function media_send_to_editor($html) {
182 ?>
183 <script type="text/javascript">
184 /* <![CDATA[ */
185 var win = window.dialogArguments || opener || parent || top;
186 win.send_to_editor('<?php echo addslashes($html); ?>');
187 /* ]]> */
188 </script>
189 <?php
190         exit;
191 }
192
193 /**
194  * This handles the file upload POST itself, creating the attachment post.
195  *
196  * @since 2.5.0
197  *
198  * @param string $file_id Index into the {@link $_FILES} array of the upload
199  * @param int $post_id The post ID the media is associated with
200  * @param array $post_data allows you to overwrite some of the attachment
201  * @param array $overrides allows you to override the {@link wp_handle_upload()} behavior
202  * @return int the ID of the attachment
203  */
204 function media_handle_upload($file_id, $post_id, $post_data = array(), $overrides = array( 'test_form' => false )) {
205
206         $time = current_time('mysql');
207         if ( $post = get_post($post_id) ) {
208                 if ( substr( $post->post_date, 0, 4 ) > 0 )
209                         $time = $post->post_date;
210         }
211
212         $name = $_FILES[$file_id]['name'];
213         $file = wp_handle_upload($_FILES[$file_id], $overrides, $time);
214
215         if ( isset($file['error']) )
216                 return new WP_Error( 'upload_error', $file['error'] );
217
218         $name_parts = pathinfo($name);
219         $name = trim( substr( $name, 0, -(1 + strlen($name_parts['extension'])) ) );
220
221         $url = $file['url'];
222         $type = $file['type'];
223         $file = $file['file'];
224         $title = $name;
225         $content = '';
226
227         // use image exif/iptc data for title and caption defaults if possible
228         if ( $image_meta = @wp_read_image_metadata($file) ) {
229                 if ( trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) )
230                         $title = $image_meta['title'];
231                 if ( trim( $image_meta['caption'] ) )
232                         $content = $image_meta['caption'];
233         }
234
235         // Construct the attachment array
236         $attachment = array_merge( array(
237                 'post_mime_type' => $type,
238                 'guid' => $url,
239                 'post_parent' => $post_id,
240                 'post_title' => $title,
241                 'post_content' => $content,
242         ), $post_data );
243
244         // This should never be set as it would then overwrite an existing attachment.
245         if ( isset( $attachment['ID'] ) )
246                 unset( $attachment['ID'] );
247
248         // Save the data
249         $id = wp_insert_attachment($attachment, $file, $post_id);
250         if ( !is_wp_error($id) ) {
251                 wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );
252         }
253
254         return $id;
255
256 }
257
258 /**
259  * This handles a sideloaded file in the same way as an uploaded file is handled by {@link media_handle_upload()}
260  *
261  * @since 2.6.0
262  *
263  * @param array $file_array Array similar to a {@link $_FILES} upload array
264  * @param int $post_id The post ID the media is associated with
265  * @param string $desc Description of the sideloaded file
266  * @param array $post_data allows you to overwrite some of the attachment
267  * @return int|object The ID of the attachment or a WP_Error on failure
268  */
269 function media_handle_sideload($file_array, $post_id, $desc = null, $post_data = array()) {
270         $overrides = array('test_form'=>false);
271
272         $time = current_time( 'mysql' );
273         if ( $post = get_post( $post_id ) ) {
274                 if ( substr( $post->post_date, 0, 4 ) > 0 )
275                         $time = $post->post_date;
276         }
277
278         $file = wp_handle_sideload( $file_array, $overrides, $time );
279         if ( isset($file['error']) )
280                 return new WP_Error( 'upload_error', $file['error'] );
281
282         $url = $file['url'];
283         $type = $file['type'];
284         $file = $file['file'];
285         $title = preg_replace('/\.[^.]+$/', '', basename($file));
286         $content = '';
287
288         // use image exif/iptc data for title and caption defaults if possible
289         if ( $image_meta = @wp_read_image_metadata($file) ) {
290                 if ( trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) )
291                         $title = $image_meta['title'];
292                 if ( trim( $image_meta['caption'] ) )
293                         $content = $image_meta['caption'];
294         }
295
296         if ( isset( $desc ) )
297                 $title = $desc;
298
299         // Construct the attachment array
300         $attachment = array_merge( array(
301                 'post_mime_type' => $type,
302                 'guid' => $url,
303                 'post_parent' => $post_id,
304                 'post_title' => $title,
305                 'post_content' => $content,
306         ), $post_data );
307
308         // This should never be set as it would then overwrite an existing attachment.
309         if ( isset( $attachment['ID'] ) )
310                 unset( $attachment['ID'] );
311
312         // Save the attachment metadata
313         $id = wp_insert_attachment($attachment, $file, $post_id);
314         if ( !is_wp_error($id) )
315                 wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );
316
317         return $id;
318 }
319
320 /**
321  * Adds the iframe to display content for the media upload page
322  *
323  * @since 2.5.0
324  *
325  * @param array $content_func
326  */
327 function wp_iframe($content_func /* ... */) {
328         _wp_admin_html_begin();
329 ?>
330 <title><?php bloginfo('name') ?> &rsaquo; <?php _e('Uploads'); ?> &#8212; <?php _e('WordPress'); ?></title>
331 <?php
332
333 wp_enqueue_style( 'colors' );
334 // Check callback name for 'media'
335 if ( ( is_array( $content_func ) && ! empty( $content_func[1] ) && 0 === strpos( (string) $content_func[1], 'media' ) )
336         || ( ! is_array( $content_func ) && 0 === strpos( $content_func, 'media' ) ) )
337         wp_enqueue_style( 'media' );
338 wp_enqueue_style( 'ie' );
339 ?>
340 <script type="text/javascript">
341 //<![CDATA[
342 addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
343 var userSettings = {'url':'<?php echo SITECOOKIEPATH; ?>','uid':'<?php if ( ! isset($current_user) ) $current_user = wp_get_current_user(); echo $current_user->ID; ?>','time':'<?php echo time(); ?>'};
344 var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>', pagenow = 'media-upload-popup', adminpage = 'media-upload-popup',
345 isRtl = <?php echo (int) is_rtl(); ?>;
346 //]]>
347 </script>
348 <?php
349 do_action('admin_enqueue_scripts', 'media-upload-popup');
350 do_action('admin_print_styles-media-upload-popup');
351 do_action('admin_print_styles');
352 do_action('admin_print_scripts-media-upload-popup');
353 do_action('admin_print_scripts');
354 do_action('admin_head-media-upload-popup');
355 do_action('admin_head');
356
357 if ( is_string($content_func) )
358         do_action( "admin_head_{$content_func}" );
359 ?>
360 </head>
361 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-core-ui no-js">
362 <script type="text/javascript">
363 document.body.className = document.body.className.replace('no-js', 'js');
364 </script>
365 <?php
366         $args = func_get_args();
367         $args = array_slice($args, 1);
368         call_user_func_array($content_func, $args);
369
370         do_action('admin_print_footer_scripts');
371 ?>
372 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
373 </body>
374 </html>
375 <?php
376 }
377
378 /**
379  * Adds the media button to the editor
380  *
381  * @since 2.5.0
382  *
383  * @param string $editor_id
384  */
385 function media_buttons($editor_id = 'content') {
386         $post = get_post();
387         if ( ! $post && ! empty( $GLOBALS['post_ID'] ) )
388                 $post = $GLOBALS['post_ID'];
389
390         wp_enqueue_media( array(
391                 'post' => $post
392         ) );
393
394         $img = '<span class="wp-media-buttons-icon"></span> ';
395
396         echo '<a href="#" class="button insert-media add_media" data-editor="' . esc_attr( $editor_id ) . '" title="' . esc_attr__( 'Add Media' ) . '">' . $img . __( 'Add Media' ) . '</a>';
397
398         // Don't use this filter. Want to add a button? Use the media_buttons action.
399         $legacy_filter = apply_filters('media_buttons_context', ''); // deprecated
400
401         if ( $legacy_filter ) {
402                 // #WP22559. Close <a> if a plugin started by closing <a> to open their own <a> tag.
403                 if ( 0 === stripos( trim( $legacy_filter ), '</a>' ) )
404                         $legacy_filter .= '</a>';
405                 echo $legacy_filter;
406         }
407 }
408 add_action( 'media_buttons', 'media_buttons' );
409
410 function get_upload_iframe_src( $type = null, $post_id = null, $tab = null ) {
411         global $post_ID;
412
413         if ( empty( $post_id ) )
414                 $post_id = $post_ID;
415
416         $upload_iframe_src = add_query_arg( 'post_id', (int) $post_id, admin_url('media-upload.php') );
417
418         if ( $type && 'media' != $type )
419                 $upload_iframe_src = add_query_arg('type', $type, $upload_iframe_src);
420
421         if ( ! empty( $tab ) )
422                 $upload_iframe_src = add_query_arg('tab', $tab, $upload_iframe_src);
423
424         $upload_iframe_src = apply_filters($type . '_upload_iframe_src', $upload_iframe_src);
425
426         return add_query_arg('TB_iframe', true, $upload_iframe_src);
427 }
428
429 /**
430  * {@internal Missing Short Description}}
431  *
432  * @since 2.5.0
433  *
434  * @return mixed void|object WP_Error on failure
435  */
436 function media_upload_form_handler() {
437         check_admin_referer('media-form');
438
439         $errors = null;
440
441         if ( isset($_POST['send']) ) {
442                 $keys = array_keys($_POST['send']);
443                 $send_id = (int) array_shift($keys);
444         }
445
446         if ( !empty($_POST['attachments']) ) foreach ( $_POST['attachments'] as $attachment_id => $attachment ) {
447                 $post = $_post = get_post($attachment_id, ARRAY_A);
448                 $post_type_object = get_post_type_object( $post[ 'post_type' ] );
449
450                 if ( !current_user_can( $post_type_object->cap->edit_post, $attachment_id ) )
451                         continue;
452
453                 if ( isset($attachment['post_content']) )
454                         $post['post_content'] = $attachment['post_content'];
455                 if ( isset($attachment['post_title']) )
456                         $post['post_title'] = $attachment['post_title'];
457                 if ( isset($attachment['post_excerpt']) )
458                         $post['post_excerpt'] = $attachment['post_excerpt'];
459                 if ( isset($attachment['menu_order']) )
460                         $post['menu_order'] = $attachment['menu_order'];
461
462                 if ( isset($send_id) && $attachment_id == $send_id ) {
463                         if ( isset($attachment['post_parent']) )
464                                 $post['post_parent'] = $attachment['post_parent'];
465                 }
466
467                 $post = apply_filters('attachment_fields_to_save', $post, $attachment);
468
469                 if ( isset($attachment['image_alt']) ) {
470                         $image_alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);
471                         if ( $image_alt != stripslashes($attachment['image_alt']) ) {
472                                 $image_alt = wp_strip_all_tags( stripslashes($attachment['image_alt']), true );
473                                 // update_meta expects slashed
474                                 update_post_meta( $attachment_id, '_wp_attachment_image_alt', addslashes($image_alt) );
475                         }
476                 }
477
478                 if ( isset($post['errors']) ) {
479                         $errors[$attachment_id] = $post['errors'];
480                         unset($post['errors']);
481                 }
482
483                 if ( $post != $_post )
484                         wp_update_post($post);
485
486                 foreach ( get_attachment_taxonomies($post) as $t ) {
487                         if ( isset($attachment[$t]) )
488                                 wp_set_object_terms($attachment_id, array_map('trim', preg_split('/,+/', $attachment[$t])), $t, false);
489                 }
490         }
491
492         if ( isset($_POST['insert-gallery']) || isset($_POST['update-gallery']) ) { ?>
493                 <script type="text/javascript">
494                 /* <![CDATA[ */
495                 var win = window.dialogArguments || opener || parent || top;
496                 win.tb_remove();
497                 /* ]]> */
498                 </script>
499                 <?php
500                 exit;
501         }
502
503         if ( isset($send_id) ) {
504                 $attachment = stripslashes_deep( $_POST['attachments'][$send_id] );
505
506                 $html = isset( $attachment['post_title'] ) ? $attachment['post_title'] : '';
507                 if ( !empty($attachment['url']) ) {
508                         $rel = '';
509                         if ( strpos($attachment['url'], 'attachment_id') || get_attachment_link($send_id) == $attachment['url'] )
510                                 $rel = " rel='attachment wp-att-" . esc_attr($send_id) . "'";
511                         $html = "<a href='{$attachment['url']}'$rel>$html</a>";
512                 }
513
514                 $html = apply_filters('media_send_to_editor', $html, $send_id, $attachment);
515                 return media_send_to_editor($html);
516         }
517
518         return $errors;
519 }
520
521 /**
522  * {@internal Missing Short Description}}
523  *
524  * @since 2.5.0
525  *
526  * @return mixed
527  */
528 function wp_media_upload_handler() {
529         $errors = array();
530         $id = 0;
531
532         if ( isset($_POST['html-upload']) && !empty($_FILES) ) {
533                 check_admin_referer('media-form');
534                 // Upload File button was clicked
535                 $id = media_handle_upload('async-upload', $_REQUEST['post_id']);
536                 unset($_FILES);
537                 if ( is_wp_error($id) ) {
538                         $errors['upload_error'] = $id;
539                         $id = false;
540                 }
541         }
542
543         if ( !empty($_POST['insertonlybutton']) ) {
544                 $src = $_POST['src'];
545                 if ( !empty($src) && !strpos($src, '://') )
546                         $src = "http://$src";
547
548                 if ( isset( $_POST['media_type'] ) && 'image' != $_POST['media_type'] ) {
549                         $title = esc_html( stripslashes( $_POST['title'] ) );
550                         if ( empty( $title ) )
551                                 $title = esc_html( basename( $src ) );
552
553                         if ( $title && $src )
554                                 $html = "<a href='" . esc_url($src) . "'>$title</a>";
555
556                         $type = 'file';
557                         if ( ( $ext = preg_replace( '/^.+?\.([^.]+)$/', '$1', $src ) ) && ( $ext_type = wp_ext2type( $ext ) )
558                                 && ( 'audio' == $ext_type || 'video' == $ext_type ) )
559                                         $type = $ext_type;
560
561                         $html = apply_filters( $type . '_send_to_editor_url', $html, esc_url_raw( $src ), $title );
562                 } else {
563                         $align = '';
564                         $alt = esc_attr( stripslashes( $_POST['alt'] ) );
565                         if ( isset($_POST['align']) ) {
566                                 $align = esc_attr( stripslashes( $_POST['align'] ) );
567                                 $class = " class='align$align'";
568                         }
569                         if ( !empty($src) )
570                                 $html = "<img src='" . esc_url($src) . "' alt='$alt'$class />";
571
572                         $html = apply_filters( 'image_send_to_editor_url', $html, esc_url_raw( $src ), $alt, $align );
573                 }
574
575                 return media_send_to_editor($html);
576         }
577
578         if ( !empty($_POST) ) {
579                 $return = media_upload_form_handler();
580
581                 if ( is_string($return) )
582                         return $return;
583                 if ( is_array($return) )
584                         $errors = $return;
585         }
586
587         if ( isset($_POST['save']) ) {
588                 $errors['upload_notice'] = __('Saved.');
589                 return media_upload_gallery();
590         }
591
592         if ( isset($_GET['tab']) && $_GET['tab'] == 'type_url' ) {
593                 $type = 'image';
594                 if ( isset( $_GET['type'] ) && in_array( $_GET['type'], array( 'video', 'audio', 'file' ) ) )
595                         $type = $_GET['type'];
596                 return wp_iframe( 'media_upload_type_url_form', $type, $errors, $id );
597         }
598
599         return wp_iframe( 'media_upload_type_form', 'image', $errors, $id );
600 }
601
602 /**
603  * Download an image from the specified URL and attach it to a post.
604  *
605  * @since 2.6.0
606  *
607  * @param string $file The URL of the image to download
608  * @param int $post_id The post ID the media is to be associated with
609  * @param string $desc Optional. Description of the image
610  * @return string|WP_Error Populated HTML img tag on success
611  */
612 function media_sideload_image($file, $post_id, $desc = null) {
613         if ( ! empty($file) ) {
614                 // Download file to temp location
615                 $tmp = download_url( $file );
616
617                 // Set variables for storage
618                 // fix file filename for query strings
619                 preg_match( '/[^\?]+\.(jpe?g|jpe|gif|png)\b/i', $file, $matches );
620                 $file_array['name'] = basename($matches[0]);
621                 $file_array['tmp_name'] = $tmp;
622
623                 // If error storing temporarily, unlink
624                 if ( is_wp_error( $tmp ) ) {
625                         @unlink($file_array['tmp_name']);
626                         $file_array['tmp_name'] = '';
627                 }
628
629                 // do the validation and storage stuff
630                 $id = media_handle_sideload( $file_array, $post_id, $desc );
631                 // If error storing permanently, unlink
632                 if ( is_wp_error($id) ) {
633                         @unlink($file_array['tmp_name']);
634                         return $id;
635                 }
636
637                 $src = wp_get_attachment_url( $id );
638         }
639
640         // Finally check to make sure the file has been saved, then return the html
641         if ( ! empty($src) ) {
642                 $alt = isset($desc) ? esc_attr($desc) : '';
643                 $html = "<img src='$src' alt='$alt' />";
644                 return $html;
645         }
646 }
647
648 /**
649  * {@internal Missing Short Description}}
650  *
651  * @since 2.5.0
652  *
653  * @return unknown
654  */
655 function media_upload_gallery() {
656         $errors = array();
657
658         if ( !empty($_POST) ) {
659                 $return = media_upload_form_handler();
660
661                 if ( is_string($return) )
662                         return $return;
663                 if ( is_array($return) )
664                         $errors = $return;
665         }
666
667         wp_enqueue_script('admin-gallery');
668         return wp_iframe( 'media_upload_gallery_form', $errors );
669 }
670
671 /**
672  * {@internal Missing Short Description}}
673  *
674  * @since 2.5.0
675  *
676  * @return unknown
677  */
678 function media_upload_library() {
679         $errors = array();
680         if ( !empty($_POST) ) {
681                 $return = media_upload_form_handler();
682
683                 if ( is_string($return) )
684                         return $return;
685                 if ( is_array($return) )
686                         $errors = $return;
687         }
688
689         return wp_iframe( 'media_upload_library_form', $errors );
690 }
691
692 /**
693  * Retrieve HTML for the image alignment radio buttons with the specified one checked.
694  *
695  * @since 2.7.0
696  *
697  * @param object $post
698  * @param string $checked
699  * @return string
700  */
701 function image_align_input_fields( $post, $checked = '' ) {
702
703         if ( empty($checked) )
704                 $checked = get_user_setting('align', 'none');
705
706         $alignments = array('none' => __('None'), 'left' => __('Left'), 'center' => __('Center'), 'right' => __('Right'));
707         if ( !array_key_exists( (string) $checked, $alignments ) )
708                 $checked = 'none';
709
710         $out = array();
711         foreach ( $alignments as $name => $label ) {
712                 $name = esc_attr($name);
713                 $out[] = "<input type='radio' name='attachments[{$post->ID}][align]' id='image-align-{$name}-{$post->ID}' value='$name'".
714                         ( $checked == $name ? " checked='checked'" : "" ) .
715                         " /><label for='image-align-{$name}-{$post->ID}' class='align image-align-{$name}-label'>$label</label>";
716         }
717         return join("\n", $out);
718 }
719
720 /**
721  * Retrieve HTML for the size radio buttons with the specified one checked.
722  *
723  * @since 2.7.0
724  *
725  * @param object $post
726  * @param bool|string $check
727  * @return array
728  */
729 function image_size_input_fields( $post, $check = '' ) {
730
731                 // get a list of the actual pixel dimensions of each possible intermediate version of this image
732                 $size_names = apply_filters( 'image_size_names_choose', array('thumbnail' => __('Thumbnail'), 'medium' => __('Medium'), 'large' => __('Large'), 'full' => __('Full Size')) );
733
734                 if ( empty($check) )
735                         $check = get_user_setting('imgsize', 'medium');
736
737                 foreach ( $size_names as $size => $label ) {
738                         $downsize = image_downsize($post->ID, $size);
739                         $checked = '';
740
741                         // is this size selectable?
742                         $enabled = ( $downsize[3] || 'full' == $size );
743                         $css_id = "image-size-{$size}-{$post->ID}";
744                         // if this size is the default but that's not available, don't select it
745                         if ( $size == $check ) {
746                                 if ( $enabled )
747                                         $checked = " checked='checked'";
748                                 else
749                                         $check = '';
750                         } elseif ( !$check && $enabled && 'thumbnail' != $size ) {
751                                 // if $check is not enabled, default to the first available size that's bigger than a thumbnail
752                                 $check = $size;
753                                 $checked = " checked='checked'";
754                         }
755
756                         $html = "<div class='image-size-item'><input type='radio' " . disabled( $enabled, false, false ) . "name='attachments[$post->ID][image-size]' id='{$css_id}' value='{$size}'$checked />";
757
758                         $html .= "<label for='{$css_id}'>$label</label>";
759                         // only show the dimensions if that choice is available
760                         if ( $enabled )
761                                 $html .= " <label for='{$css_id}' class='help'>" . sprintf( "(%d&nbsp;&times;&nbsp;%d)", $downsize[1], $downsize[2] ). "</label>";
762
763                         $html .= '</div>';
764
765                         $out[] = $html;
766                 }
767
768                 return array(
769                         'label' => __('Size'),
770                         'input' => 'html',
771                         'html'  => join("\n", $out),
772                 );
773 }
774
775 /**
776  * Retrieve HTML for the Link URL buttons with the default link type as specified.
777  *
778  * @since 2.7.0
779  *
780  * @param object $post
781  * @param string $url_type
782  * @return string
783  */
784 function image_link_input_fields($post, $url_type = '') {
785
786         $file = wp_get_attachment_url($post->ID);
787         $link = get_attachment_link($post->ID);
788
789         if ( empty($url_type) )
790                 $url_type = get_user_setting('urlbutton', 'post');
791
792         $url = '';
793         if ( $url_type == 'file' )
794                 $url = $file;
795         elseif ( $url_type == 'post' )
796                 $url = $link;
797
798         return "
799         <input type='text' class='text urlfield' name='attachments[$post->ID][url]' value='" . esc_attr($url) . "' /><br />
800         <button type='button' class='button urlnone' data-link-url=''>" . __('None') . "</button>
801         <button type='button' class='button urlfile' data-link-url='" . esc_attr($file) . "'>" . __('File URL') . "</button>
802         <button type='button' class='button urlpost' data-link-url='" . esc_attr($link) . "'>" . __('Attachment Post URL') . "</button>
803 ";
804 }
805
806 function wp_caption_input_textarea($edit_post) {
807         // post data is already escaped
808         $name = "attachments[{$edit_post->ID}][post_excerpt]";
809
810         return '<textarea name="' . $name . '" id="' . $name . '">' . $edit_post->post_excerpt . '</textarea>';
811 }
812
813 /**
814  * {@internal Missing Short Description}}
815  *
816  * @since 2.5.0
817  *
818  * @param array $form_fields
819  * @param object $post
820  * @return array
821  */
822 function image_attachment_fields_to_edit($form_fields, $post) {
823         return $form_fields;
824 }
825
826 /**
827  * {@internal Missing Short Description}}
828  *
829  * @since 2.5.0
830  *
831  * @param array $form_fields
832  * @param object $post {@internal $post not used}}
833  * @return array
834  */
835 function media_single_attachment_fields_to_edit( $form_fields, $post ) {
836         unset($form_fields['url'], $form_fields['align'], $form_fields['image-size']);
837         return $form_fields;
838 }
839
840 /**
841  * {@internal Missing Short Description}}
842  *
843  * @since 2.8.0
844  *
845  * @param array $form_fields
846  * @param object $post {@internal $post not used}}
847  * @return array
848  */
849 function media_post_single_attachment_fields_to_edit( $form_fields, $post ) {
850         unset($form_fields['image_url']);
851         return $form_fields;
852 }
853
854 /**
855  * Filters input from media_upload_form_handler() and assigns a default
856  * post_title from the file name if none supplied.
857  *
858  * Illustrates the use of the attachment_fields_to_save filter
859  * which can be used to add default values to any field before saving to DB.
860  *
861  * @since 2.5.0
862  *
863  * @param object $post
864  * @param array $attachment {@internal $attachment not used}}
865  * @return array
866  */
867 function image_attachment_fields_to_save($post, $attachment) {
868         if ( substr($post['post_mime_type'], 0, 5) == 'image' ) {
869                 if ( strlen(trim($post['post_title'])) == 0 ) {
870                         $post['post_title'] = preg_replace('/\.\w+$/', '', basename($post['guid']));
871                         $post['errors']['post_title']['errors'][] = __('Empty Title filled from filename.');
872                 }
873         }
874
875         return $post;
876 }
877
878 add_filter('attachment_fields_to_save', 'image_attachment_fields_to_save', 10, 2);
879
880 /**
881  * {@internal Missing Short Description}}
882  *
883  * @since 2.5.0
884  *
885  * @param string $html
886  * @param integer $attachment_id
887  * @param array $attachment
888  * @return array
889  */
890 function image_media_send_to_editor($html, $attachment_id, $attachment) {
891         $post = get_post($attachment_id);
892         if ( substr($post->post_mime_type, 0, 5) == 'image' ) {
893                 $url = $attachment['url'];
894                 $align = !empty($attachment['align']) ? $attachment['align'] : 'none';
895                 $size = !empty($attachment['image-size']) ? $attachment['image-size'] : 'medium';
896                 $alt = !empty($attachment['image_alt']) ? $attachment['image_alt'] : '';
897                 $rel = ( $url == get_attachment_link($attachment_id) );
898
899                 return get_image_send_to_editor($attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, $rel, $size, $alt);
900         }
901
902         return $html;
903 }
904
905 add_filter('media_send_to_editor', 'image_media_send_to_editor', 10, 3);
906
907 /**
908  * {@internal Missing Short Description}}
909  *
910  * @since 2.5.0
911  *
912  * @param object $post
913  * @param array $errors
914  * @return array
915  */
916 function get_attachment_fields_to_edit($post, $errors = null) {
917         if ( is_int($post) )
918                 $post = get_post($post);
919         if ( is_array($post) )
920                 $post = new WP_Post( (object) $post );
921
922         $image_url = wp_get_attachment_url($post->ID);
923
924         $edit_post = sanitize_post($post, 'edit');
925
926         $form_fields = array(
927                 'post_title'   => array(
928                         'label'      => __('Title'),
929                         'value'      => $edit_post->post_title
930                 ),
931                 'image_alt'   => array(),
932                 'post_excerpt' => array(
933                         'label'      => __('Caption'),
934                         'input'      => 'html',
935                         'html'       => wp_caption_input_textarea($edit_post)
936                 ),
937                 'post_content' => array(
938                         'label'      => __('Description'),
939                         'value'      => $edit_post->post_content,
940                         'input'      => 'textarea'
941                 ),
942                 'url'          => array(
943                         'label'      => __('Link URL'),
944                         'input'      => 'html',
945                         'html'       => image_link_input_fields($post, get_option('image_default_link_type')),
946                         'helps'      => __('Enter a link URL or click above for presets.')
947                 ),
948                 'menu_order'   => array(
949                         'label'      => __('Order'),
950                         'value'      => $edit_post->menu_order
951                 ),
952                 'image_url'     => array(
953                         'label'      => __('File URL'),
954                         'input'      => 'html',
955                         'html'       => "<input type='text' class='text urlfield' readonly='readonly' name='attachments[$post->ID][url]' value='" . esc_attr($image_url) . "' /><br />",
956                         'value'      => wp_get_attachment_url($post->ID),
957                         'helps'      => __('Location of the uploaded file.')
958                 )
959         );
960
961         foreach ( get_attachment_taxonomies($post) as $taxonomy ) {
962                 $t = (array) get_taxonomy($taxonomy);
963                 if ( ! $t['public'] || ! $t['show_ui'] )
964                         continue;
965                 if ( empty($t['label']) )
966                         $t['label'] = $taxonomy;
967                 if ( empty($t['args']) )
968                         $t['args'] = array();
969
970                 $terms = get_object_term_cache($post->ID, $taxonomy);
971                 if ( false === $terms )
972                         $terms = wp_get_object_terms($post->ID, $taxonomy, $t['args']);
973
974                 $values = array();
975
976                 foreach ( $terms as $term )
977                         $values[] = $term->slug;
978                 $t['value'] = join(', ', $values);
979
980                 $form_fields[$taxonomy] = $t;
981         }
982
983         // Merge default fields with their errors, so any key passed with the error (e.g. 'error', 'helps', 'value') will replace the default
984         // The recursive merge is easily traversed with array casting: foreach( (array) $things as $thing )
985         $form_fields = array_merge_recursive($form_fields, (array) $errors);
986
987         // This was formerly in image_attachment_fields_to_edit().
988         if ( substr($post->post_mime_type, 0, 5) == 'image' ) {
989                 $alt = get_post_meta($post->ID, '_wp_attachment_image_alt', true);
990                 if ( empty($alt) )
991                         $alt = '';
992
993                 $form_fields['post_title']['required'] = true;
994
995                 $form_fields['image_alt'] = array(
996                         'value' => $alt,
997                         'label' => __('Alternative Text'),
998                         'helps' => __('Alt text for the image, e.g. &#8220;The Mona Lisa&#8221;')
999                 );
1000
1001                 $form_fields['align'] = array(
1002                         'label' => __('Alignment'),
1003                         'input' => 'html',
1004                         'html'  => image_align_input_fields($post, get_option('image_default_align')),
1005                 );
1006
1007                 $form_fields['image-size'] = image_size_input_fields( $post, get_option('image_default_size', 'medium') );
1008
1009         } else {
1010                 unset( $form_fields['image_alt'] );
1011         }
1012
1013         $form_fields = apply_filters('attachment_fields_to_edit', $form_fields, $post);
1014
1015         return $form_fields;
1016 }
1017
1018 /**
1019  * Retrieve HTML for media items of post gallery.
1020  *
1021  * The HTML markup retrieved will be created for the progress of SWF Upload
1022  * component. Will also create link for showing and hiding the form to modify
1023  * the image attachment.
1024  *
1025  * @since 2.5.0
1026  *
1027  * @param int $post_id Optional. Post ID.
1028  * @param array $errors Errors for attachment, if any.
1029  * @return string
1030  */
1031 function get_media_items( $post_id, $errors ) {
1032         $attachments = array();
1033         if ( $post_id ) {
1034                 $post = get_post($post_id);
1035                 if ( $post && $post->post_type == 'attachment' )
1036                         $attachments = array($post->ID => $post);
1037                 else
1038                         $attachments = get_children( array( 'post_parent' => $post_id, 'post_type' => 'attachment', 'orderby' => 'menu_order ASC, ID', 'order' => 'DESC') );
1039         } else {
1040                 if ( is_array($GLOBALS['wp_the_query']->posts) )
1041                         foreach ( $GLOBALS['wp_the_query']->posts as $attachment )
1042                                 $attachments[$attachment->ID] = $attachment;
1043         }
1044
1045         $output = '';
1046         foreach ( (array) $attachments as $id => $attachment ) {
1047                 if ( $attachment->post_status == 'trash' )
1048                         continue;
1049                 if ( $item = get_media_item( $id, array( 'errors' => isset($errors[$id]) ? $errors[$id] : null) ) )
1050                         $output .= "\n<div id='media-item-$id' class='media-item child-of-$attachment->post_parent preloaded'><div class='progress hidden'><div class='bar'></div></div><div id='media-upload-error-$id' class='hidden'></div><div class='filename hidden'></div>$item\n</div>";
1051         }
1052
1053         return $output;
1054 }
1055
1056 /**
1057  * Retrieve HTML form for modifying the image attachment.
1058  *
1059  * @since 2.5.0
1060  *
1061  * @param int $attachment_id Attachment ID for modification.
1062  * @param string|array $args Optional. Override defaults.
1063  * @return string HTML form for attachment.
1064  */
1065 function get_media_item( $attachment_id, $args = null ) {
1066         global $redir_tab;
1067
1068         if ( ( $attachment_id = intval( $attachment_id ) ) && $thumb_url = wp_get_attachment_image_src( $attachment_id, 'thumbnail', true ) )
1069                 $thumb_url = $thumb_url[0];
1070         else
1071                 $thumb_url = false;
1072
1073         $post = get_post( $attachment_id );
1074         $current_post_id = !empty( $_GET['post_id'] ) ? (int) $_GET['post_id'] : 0;
1075
1076         $default_args = array( 'errors' => null, 'send' => $current_post_id ? post_type_supports( get_post_type( $current_post_id ), 'editor' ) : true, 'delete' => true, 'toggle' => true, 'show_title' => true );
1077         $args = wp_parse_args( $args, $default_args );
1078         $args = apply_filters( 'get_media_item_args', $args );
1079         extract( $args, EXTR_SKIP );
1080
1081         $toggle_on  = __( 'Show' );
1082         $toggle_off = __( 'Hide' );
1083
1084         $filename = esc_html( wp_basename( $post->guid ) );
1085         $title = esc_attr( $post->post_title );
1086
1087         if ( $_tags = get_the_tags( $attachment_id ) ) {
1088                 foreach ( $_tags as $tag )
1089                         $tags[] = $tag->name;
1090                 $tags = esc_attr( join( ', ', $tags ) );
1091         }
1092
1093         $post_mime_types = get_post_mime_types();
1094         $keys = array_keys( wp_match_mime_types( array_keys( $post_mime_types ), $post->post_mime_type ) );
1095         $type = array_shift( $keys );
1096         $type_html = "<input type='hidden' id='type-of-$attachment_id' value='" . esc_attr( $type ) . "' />";
1097
1098         $form_fields = get_attachment_fields_to_edit( $post, $errors );
1099
1100         if ( $toggle ) {
1101                 $class = empty( $errors ) ? 'startclosed' : 'startopen';
1102                 $toggle_links = "
1103         <a class='toggle describe-toggle-on' href='#'>$toggle_on</a>
1104         <a class='toggle describe-toggle-off' href='#'>$toggle_off</a>";
1105         } else {
1106                 $class = '';
1107                 $toggle_links = '';
1108         }
1109
1110         $display_title = ( !empty( $title ) ) ? $title : $filename; // $title shouldn't ever be empty, but just in case
1111         $display_title = $show_title ? "<div class='filename new'><span class='title'>" . wp_html_excerpt( $display_title, 60 ) . "</span></div>" : '';
1112
1113         $gallery = ( ( isset( $_REQUEST['tab'] ) && 'gallery' == $_REQUEST['tab'] ) || ( isset( $redir_tab ) && 'gallery' == $redir_tab ) );
1114         $order = '';
1115
1116         foreach ( $form_fields as $key => $val ) {
1117                 if ( 'menu_order' == $key ) {
1118                         if ( $gallery )
1119                                 $order = "<div class='menu_order'> <input class='menu_order_input' type='text' id='attachments[$attachment_id][menu_order]' name='attachments[$attachment_id][menu_order]' value='" . esc_attr( $val['value'] ). "' /></div>";
1120                         else
1121                                 $order = "<input type='hidden' name='attachments[$attachment_id][menu_order]' value='" . esc_attr( $val['value'] ) . "' />";
1122
1123                         unset( $form_fields['menu_order'] );
1124                         break;
1125                 }
1126         }
1127
1128         $media_dims = '';
1129         $meta = wp_get_attachment_metadata( $post->ID );
1130         if ( is_array( $meta ) && array_key_exists( 'width', $meta ) && array_key_exists( 'height', $meta ) )
1131                 $media_dims .= "<span id='media-dims-$post->ID'>{$meta['width']}&nbsp;&times;&nbsp;{$meta['height']}</span> ";
1132         $media_dims = apply_filters( 'media_meta', $media_dims, $post );
1133
1134         $image_edit_button = '';
1135         if ( wp_attachment_is_image( $post->ID ) && wp_image_editor_supports( array( 'mime_type' => $post->post_mime_type ) ) ) {
1136                 $nonce = wp_create_nonce( "image_editor-$post->ID" );
1137                 $image_edit_button = "<input type='button' id='imgedit-open-btn-$post->ID' onclick='imageEdit.open( $post->ID, \"$nonce\" )' class='button' value='" . esc_attr__( 'Edit Image' ) . "' /> <span class='spinner'></span>";
1138         }
1139
1140         $attachment_url = get_permalink( $attachment_id );
1141
1142         $item = "
1143         $type_html
1144         $toggle_links
1145         $order
1146         $display_title
1147         <table class='slidetoggle describe $class'>
1148                 <thead class='media-item-info' id='media-head-$post->ID'>
1149                 <tr valign='top'>
1150                         <td class='A1B1' id='thumbnail-head-$post->ID'>
1151                         <p><a href='$attachment_url' target='_blank'><img class='thumbnail' src='$thumb_url' alt='' /></a></p>
1152                         <p>$image_edit_button</p>
1153                         </td>
1154                         <td>
1155                         <p><strong>" . __('File name:') . "</strong> $filename</p>
1156                         <p><strong>" . __('File type:') . "</strong> $post->post_mime_type</p>
1157                         <p><strong>" . __('Upload date:') . "</strong> " . mysql2date( get_option('date_format'), $post->post_date ). '</p>';
1158                         if ( !empty( $media_dims ) )
1159                                 $item .= "<p><strong>" . __('Dimensions:') . "</strong> $media_dims</p>\n";
1160
1161                         $item .= "</td></tr>\n";
1162
1163         $item .= "
1164                 </thead>
1165                 <tbody>
1166                 <tr><td colspan='2' class='imgedit-response' id='imgedit-response-$post->ID'></td></tr>
1167                 <tr><td style='display:none' colspan='2' class='image-editor' id='image-editor-$post->ID'></td></tr>\n";
1168
1169         $defaults = array(
1170                 'input'      => 'text',
1171                 'required'   => false,
1172                 'value'      => '',
1173                 'extra_rows' => array(),
1174         );
1175
1176         if ( $send )
1177                 $send = get_submit_button( __( 'Insert into Post' ), 'button', "send[$attachment_id]", false );
1178         if ( $delete && current_user_can( 'delete_post', $attachment_id ) ) {
1179                 if ( !EMPTY_TRASH_DAYS ) {
1180                         $delete = "<a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete-permanently'>" . __( 'Delete Permanently' ) . '</a>';
1181                 } elseif ( !MEDIA_TRASH ) {
1182                         $delete = "<a href='#' class='del-link' onclick=\"document.getElementById('del_attachment_$attachment_id').style.display='block';return false;\">" . __( 'Delete' ) . "</a>
1183                          <div id='del_attachment_$attachment_id' class='del-attachment' style='display:none;'><p>" . sprintf( __( 'You are about to delete <strong>%s</strong>.' ), $filename ) . "</p>
1184                          <a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='button'>" . __( 'Continue' ) . "</a>
1185                          <a href='#' class='button' onclick=\"this.parentNode.style.display='none';return false;\">" . __( 'Cancel' ) . "</a>
1186                          </div>";
1187                 } else {
1188                         $delete = "<a href='" . wp_nonce_url( "post.php?action=trash&amp;post=$attachment_id", 'trash-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete'>" . __( 'Move to Trash' ) . "</a>
1189                         <a href='" . wp_nonce_url( "post.php?action=untrash&amp;post=$attachment_id", 'untrash-post_' . $attachment_id ) . "' id='undo[$attachment_id]' class='undo hidden'>" . __( 'Undo' ) . "</a>";
1190                 }
1191         } else {
1192                 $delete = '';
1193         }
1194
1195         $thumbnail = '';
1196         $calling_post_id = 0;
1197         if ( isset( $_GET['post_id'] ) )
1198                 $calling_post_id = absint( $_GET['post_id'] );
1199         elseif ( isset( $_POST ) && count( $_POST ) ) // Like for async-upload where $_GET['post_id'] isn't set
1200                 $calling_post_id = $post->post_parent;
1201         if ( 'image' == $type && $calling_post_id && current_theme_supports( 'post-thumbnails', get_post_type( $calling_post_id ) )
1202                 && post_type_supports( get_post_type( $calling_post_id ), 'thumbnail' ) && get_post_thumbnail_id( $calling_post_id ) != $attachment_id ) {
1203                 $ajax_nonce = wp_create_nonce( "set_post_thumbnail-$calling_post_id" );
1204                 $thumbnail = "<a class='wp-post-thumbnail' id='wp-post-thumbnail-" . $attachment_id . "' href='#' onclick='WPSetAsThumbnail(\"$attachment_id\", \"$ajax_nonce\");return false;'>" . esc_html__( "Use as featured image" ) . "</a>";
1205         }
1206
1207         if ( ( $send || $thumbnail || $delete ) && !isset( $form_fields['buttons'] ) )
1208                 $form_fields['buttons'] = array( 'tr' => "\t\t<tr class='submit'><td></td><td class='savesend'>$send $thumbnail $delete</td></tr>\n" );
1209
1210         $hidden_fields = array();
1211
1212         foreach ( $form_fields as $id => $field ) {
1213                 if ( $id[0] == '_' )
1214                         continue;
1215
1216                 if ( !empty( $field['tr'] ) ) {
1217                         $item .= $field['tr'];
1218                         continue;
1219                 }
1220
1221                 $field = array_merge( $defaults, $field );
1222                 $name = "attachments[$attachment_id][$id]";
1223
1224                 if ( $field['input'] == 'hidden' ) {
1225                         $hidden_fields[$name] = $field['value'];
1226                         continue;
1227                 }
1228
1229                 $required      = $field['required'] ? '<span class="alignright"><abbr title="required" class="required">*</abbr></span>' : '';
1230                 $aria_required = $field['required'] ? " aria-required='true' " : '';
1231                 $class  = $id;
1232                 $class .= $field['required'] ? ' form-required' : '';
1233
1234                 $item .= "\t\t<tr class='$class'>\n\t\t\t<th valign='top' scope='row' class='label'><label for='$name'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label></th>\n\t\t\t<td class='field'>";
1235                 if ( !empty( $field[ $field['input'] ] ) )
1236                         $item .= $field[ $field['input'] ];
1237                 elseif ( $field['input'] == 'textarea' ) {
1238                         if ( 'post_content' == $id && user_can_richedit() ) {
1239                                 // sanitize_post() skips the post_content when user_can_richedit
1240                                 $field['value'] = htmlspecialchars( $field['value'], ENT_QUOTES );
1241                         }
1242                         // post_excerpt is already escaped by sanitize_post() in get_attachment_fields_to_edit()
1243                         $item .= "<textarea id='$name' name='$name' $aria_required>" . $field['value'] . '</textarea>';
1244                 } else {
1245                         $item .= "<input type='text' class='text' id='$name' name='$name' value='" . esc_attr( $field['value'] ) . "' $aria_required />";
1246                 }
1247                 if ( !empty( $field['helps'] ) )
1248                         $item .= "<p class='help'>" . join( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>';
1249                 $item .= "</td>\n\t\t</tr>\n";
1250
1251                 $extra_rows = array();
1252
1253                 if ( !empty( $field['errors'] ) )
1254                         foreach ( array_unique( (array) $field['errors'] ) as $error )
1255                                 $extra_rows['error'][] = $error;
1256
1257                 if ( !empty( $field['extra_rows'] ) )
1258                         foreach ( $field['extra_rows'] as $class => $rows )
1259                                 foreach ( (array) $rows as $html )
1260                                         $extra_rows[$class][] = $html;
1261
1262                 foreach ( $extra_rows as $class => $rows )
1263                         foreach ( $rows as $html )
1264                                 $item .= "\t\t<tr><td></td><td class='$class'>$html</td></tr>\n";
1265         }
1266
1267         if ( !empty( $form_fields['_final'] ) )
1268                 $item .= "\t\t<tr class='final'><td colspan='2'>{$form_fields['_final']}</td></tr>\n";
1269         $item .= "\t</tbody>\n";
1270         $item .= "\t</table>\n";
1271
1272         foreach ( $hidden_fields as $name => $value )
1273                 $item .= "\t<input type='hidden' name='$name' id='$name' value='" . esc_attr( $value ) . "' />\n";
1274
1275         if ( $post->post_parent < 1 && isset( $_REQUEST['post_id'] ) ) {
1276                 $parent = (int) $_REQUEST['post_id'];
1277                 $parent_name = "attachments[$attachment_id][post_parent]";
1278                 $item .= "\t<input type='hidden' name='$parent_name' id='$parent_name' value='$parent' />\n";
1279         }
1280
1281         return $item;
1282 }
1283
1284 function get_compat_media_markup( $attachment_id, $args = null ) {
1285         $post = get_post( $attachment_id );
1286
1287         $default_args = array(
1288                 'errors' => null,
1289                 'in_modal' => false,
1290         );
1291
1292         $user_can_edit = current_user_can( 'edit_post', $attachment_id );
1293
1294         $args = wp_parse_args( $args, $default_args );
1295         $args = apply_filters( 'get_media_item_args', $args );
1296
1297         $form_fields = array();
1298
1299         if ( $args['in_modal'] ) {
1300                 foreach ( get_attachment_taxonomies($post) as $taxonomy ) {
1301                         $t = (array) get_taxonomy($taxonomy);
1302                         if ( ! $t['public'] || ! $t['show_ui'] )
1303                                 continue;
1304                         if ( empty($t['label']) )
1305                                 $t['label'] = $taxonomy;
1306                         if ( empty($t['args']) )
1307                                 $t['args'] = array();
1308
1309                         $terms = get_object_term_cache($post->ID, $taxonomy);
1310                         if ( false === $terms )
1311                                 $terms = wp_get_object_terms($post->ID, $taxonomy, $t['args']);
1312
1313                         $values = array();
1314
1315                         foreach ( $terms as $term )
1316                                 $values[] = $term->slug;
1317                         $t['value'] = join(', ', $values);
1318                         $t['taxonomy'] = true;
1319
1320                         $form_fields[$taxonomy] = $t;
1321                 }
1322         }
1323
1324         // Merge default fields with their errors, so any key passed with the error (e.g. 'error', 'helps', 'value') will replace the default
1325         // The recursive merge is easily traversed with array casting: foreach( (array) $things as $thing )
1326         $form_fields = array_merge_recursive($form_fields, (array) $args['errors'] );
1327
1328         $form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
1329
1330         unset( $form_fields['image-size'], $form_fields['align'], $form_fields['image_alt'],
1331                 $form_fields['post_title'], $form_fields['post_excerpt'], $form_fields['post_content'],
1332                 $form_fields['url'], $form_fields['menu_order'], $form_fields['image_url'] );
1333
1334         $media_meta = apply_filters( 'media_meta', '', $post );
1335
1336         $defaults = array(
1337                 'input'         => 'text',
1338                 'required'      => false,
1339                 'value'         => '',
1340                 'extra_rows'    => array(),
1341                 'show_in_edit'  => true,
1342                 'show_in_modal' => true,
1343         );
1344
1345         $hidden_fields = array();
1346
1347         $item = '';
1348         foreach ( $form_fields as $id => $field ) {
1349                 if ( $id[0] == '_' )
1350                         continue;
1351
1352                 $name = "attachments[$attachment_id][$id]";
1353                 $id_attr = "attachments-$attachment_id-$id";
1354
1355                 if ( !empty( $field['tr'] ) ) {
1356                         $item .= $field['tr'];
1357                         continue;
1358                 }
1359
1360                 $field = array_merge( $defaults, $field );
1361
1362                 if ( ( ! $field['show_in_edit'] && ! $args['in_modal'] ) || ( ! $field['show_in_modal'] && $args['in_modal'] ) )
1363                         continue;
1364
1365                 if ( $field['input'] == 'hidden' ) {
1366                         $hidden_fields[$name] = $field['value'];
1367                         continue;
1368                 }
1369
1370                 $readonly      = ! $user_can_edit && ! empty( $field['taxonomy'] ) ? " readonly='readonly' " : '';
1371                 $required      = $field['required'] ? '<span class="alignright"><abbr title="required" class="required">*</abbr></span>' : '';
1372                 $aria_required = $field['required'] ? " aria-required='true' " : '';
1373                 $class  = 'compat-field-' . $id;
1374                 $class .= $field['required'] ? ' form-required' : '';
1375
1376                 $item .= "\t\t<tr class='$class'>";
1377                 $item .= "\t\t\t<th valign='top' scope='row' class='label'><label for='$id_attr'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label>";
1378                 $item .= "</th>\n\t\t\t<td class='field'>";
1379
1380                 if ( !empty( $field[ $field['input'] ] ) )
1381                         $item .= $field[ $field['input'] ];
1382                 elseif ( $field['input'] == 'textarea' ) {
1383                         if ( 'post_content' == $id && user_can_richedit() ) {
1384                                 // sanitize_post() skips the post_content when user_can_richedit
1385                                 $field['value'] = htmlspecialchars( $field['value'], ENT_QUOTES );
1386                         }
1387                         $item .= "<textarea id='$id_attr' name='$name' $aria_required>" . $field['value'] . '</textarea>';
1388                 } else {
1389                         $item .= "<input type='text' class='text' id='$id_attr' name='$name' value='" . esc_attr( $field['value'] ) . "' $readonly $aria_required />";
1390                 }
1391                 if ( !empty( $field['helps'] ) )
1392                         $item .= "<p class='help'>" . join( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>';
1393                 $item .= "</td>\n\t\t</tr>\n";
1394
1395                 $extra_rows = array();
1396
1397                 if ( !empty( $field['errors'] ) )
1398                         foreach ( array_unique( (array) $field['errors'] ) as $error )
1399                                 $extra_rows['error'][] = $error;
1400
1401                 if ( !empty( $field['extra_rows'] ) )
1402                         foreach ( $field['extra_rows'] as $class => $rows )
1403                                 foreach ( (array) $rows as $html )
1404                                         $extra_rows[$class][] = $html;
1405
1406                 foreach ( $extra_rows as $class => $rows )
1407                         foreach ( $rows as $html )
1408                                 $item .= "\t\t<tr><td></td><td class='$class'>$html</td></tr>\n";
1409         }
1410
1411         if ( !empty( $form_fields['_final'] ) )
1412                 $item .= "\t\t<tr class='final'><td colspan='2'>{$form_fields['_final']}</td></tr>\n";
1413         if ( $item )
1414                 $item = '<table class="compat-attachment-fields">' . $item . '</table>';
1415
1416         foreach ( $hidden_fields as $hidden_field => $value ) {
1417                 $item .= '<input type="hidden" name="' . esc_attr( $hidden_field ) . '" value="' . esc_attr( $value ) . '" />' . "\n";
1418         }
1419
1420         if ( $item )
1421                 $item = '<input type="hidden" name="attachments[' . $attachment_id . '][menu_order]" value="' . esc_attr( $post->menu_order ) . '" />' . $item;
1422
1423         return array(
1424                 'item'   => $item,
1425                 'meta'   => $media_meta,
1426         );
1427 }
1428
1429 /**
1430  * {@internal Missing Short Description}}
1431  *
1432  * @since 2.5.0
1433  */
1434 function media_upload_header() {
1435         $post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
1436         echo '<script type="text/javascript">post_id = ' . $post_id . ";</script>\n";
1437         if ( empty( $_GET['chromeless'] ) ) {
1438                 echo '<div id="media-upload-header">';
1439                 the_media_upload_tabs();
1440                 echo '</div>';
1441         }
1442 }
1443
1444 /**
1445  * {@internal Missing Short Description}}
1446  *
1447  * @since 2.5.0
1448  *
1449  * @param unknown_type $errors
1450  */
1451 function media_upload_form( $errors = null ) {
1452         global $type, $tab, $pagenow, $is_IE, $is_opera;
1453
1454         if ( ! _device_can_upload() ) {
1455                 echo '<p>' . __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="http://wordpress.org/extend/mobile/">native app for your device</a> instead.') . '</p>';
1456                 return;
1457         }
1458
1459         $upload_action_url = admin_url('async-upload.php');
1460         $post_id = isset($_REQUEST['post_id']) ? intval($_REQUEST['post_id']) : 0;
1461         $_type = isset($type) ? $type : '';
1462         $_tab = isset($tab) ? $tab : '';
1463
1464         $upload_size_unit = $max_upload_size = wp_max_upload_size();
1465         $sizes = array( 'KB', 'MB', 'GB' );
1466
1467         for ( $u = -1; $upload_size_unit > 1024 && $u < count( $sizes ) - 1; $u++ ) {
1468                 $upload_size_unit /= 1024;
1469         }
1470
1471         if ( $u < 0 ) {
1472                 $upload_size_unit = 0;
1473                 $u = 0;
1474         } else {
1475                 $upload_size_unit = (int) $upload_size_unit;
1476         }
1477 ?>
1478
1479 <div id="media-upload-notice"><?php
1480
1481         if (isset($errors['upload_notice']) )
1482                 echo $errors['upload_notice'];
1483
1484 ?></div>
1485 <div id="media-upload-error"><?php
1486
1487         if (isset($errors['upload_error']) && is_wp_error($errors['upload_error']))
1488                 echo $errors['upload_error']->get_error_message();
1489
1490 ?></div>
1491 <?php
1492 if ( is_multisite() && !is_upload_space_available() ) {
1493         do_action( 'upload_ui_over_quota' );
1494         return;
1495 }
1496
1497 do_action('pre-upload-ui');
1498
1499 $post_params = array(
1500                 "post_id" => $post_id,
1501                 "_wpnonce" => wp_create_nonce('media-form'),
1502                 "type" => $_type,
1503                 "tab" => $_tab,
1504                 "short" => "1",
1505 );
1506
1507 $post_params = apply_filters( 'upload_post_params', $post_params ); // hook change! old name: 'swfupload_post_params'
1508
1509 $plupload_init = array(
1510         'runtimes' => 'html5,silverlight,flash,html4',
1511         'browse_button' => 'plupload-browse-button',
1512         'container' => 'plupload-upload-ui',
1513         'drop_element' => 'drag-drop-area',
1514         'file_data_name' => 'async-upload',
1515         'multiple_queues' => true,
1516         'max_file_size' => $max_upload_size . 'b',
1517         'url' => $upload_action_url,
1518         'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
1519         'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
1520         'filters' => array( array('title' => __( 'Allowed Files' ), 'extensions' => '*') ),
1521         'multipart' => true,
1522         'urlstream_upload' => true,
1523         'multipart_params' => $post_params
1524 );
1525
1526 // Multi-file uploading doesn't currently work in iOS Safari,
1527 // single-file allows the built-in camera to be used as source for images
1528 if ( wp_is_mobile() )
1529         $plupload_init['multi_selection'] = false;
1530
1531 $plupload_init = apply_filters( 'plupload_init', $plupload_init );
1532
1533 ?>
1534
1535 <script type="text/javascript">
1536 <?php
1537 // Verify size is an int. If not return default value.
1538 $large_size_h = absint( get_option('large_size_h') );
1539 if( !$large_size_h )
1540         $large_size_h = 1024;
1541 $large_size_w = absint( get_option('large_size_w') );
1542 if( !$large_size_w )
1543         $large_size_w = 1024;
1544 ?>
1545 var resize_height = <?php echo $large_size_h; ?>, resize_width = <?php echo $large_size_w; ?>,
1546 wpUploaderInit = <?php echo json_encode($plupload_init); ?>;
1547 </script>
1548
1549 <div id="plupload-upload-ui" class="hide-if-no-js">
1550 <?php do_action('pre-plupload-upload-ui'); // hook change, old name: 'pre-flash-upload-ui' ?>
1551 <div id="drag-drop-area">
1552         <div class="drag-drop-inside">
1553         <p class="drag-drop-info"><?php _e('Drop files here'); ?></p>
1554         <p><?php _ex('or', 'Uploader: Drop files here - or - Select Files'); ?></p>
1555         <p class="drag-drop-buttons"><input id="plupload-browse-button" type="button" value="<?php esc_attr_e('Select Files'); ?>" class="button" /></p>
1556         </div>
1557 </div>
1558 <?php do_action('post-plupload-upload-ui'); // hook change, old name: 'post-flash-upload-ui' ?>
1559 </div>
1560
1561 <div id="html-upload-ui" class="hide-if-js">
1562 <?php do_action('pre-html-upload-ui'); ?>
1563         <p id="async-upload-wrap">
1564                 <label class="screen-reader-text" for="async-upload"><?php _e('Upload'); ?></label>
1565                 <input type="file" name="async-upload" id="async-upload" />
1566                 <?php submit_button( __( 'Upload' ), 'button', 'html-upload', false ); ?>
1567                 <a href="#" onclick="try{top.tb_remove();}catch(e){}; return false;"><?php _e('Cancel'); ?></a>
1568         </p>
1569         <div class="clear"></div>
1570 <?php do_action('post-html-upload-ui'); ?>
1571 </div>
1572
1573 <span class="max-upload-size"><?php printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($sizes[$u]) ); ?></span>
1574 <?php
1575 if ( ($is_IE || $is_opera) && $max_upload_size > 100 * 1024 * 1024 ) { ?>
1576         <span class="big-file-warning"><?php _e('Your browser has some limitations uploading large files with the multi-file uploader. Please use the browser uploader for files over 100MB.'); ?></span>
1577 <?php }
1578
1579         do_action('post-upload-ui');
1580 }
1581
1582 /**
1583  * {@internal Missing Short Description}}
1584  *
1585  * @since 2.5.0
1586  *
1587  * @param string $type
1588  * @param object $errors
1589  * @param integer $id
1590  */
1591 function media_upload_type_form($type = 'file', $errors = null, $id = null) {
1592
1593         media_upload_header();
1594
1595         $post_id = isset( $_REQUEST['post_id'] )? intval( $_REQUEST['post_id'] ) : 0;
1596
1597         $form_action_url = admin_url("media-upload.php?type=$type&tab=type&post_id=$post_id");
1598         $form_action_url = apply_filters('media_upload_form_url', $form_action_url, $type);
1599         $form_class = 'media-upload-form type-form validate';
1600
1601         if ( get_user_setting('uploader') )
1602                 $form_class .= ' html-uploader';
1603 ?>
1604
1605 <form enctype="multipart/form-data" method="post" action="<?php echo esc_attr($form_action_url); ?>" class="<?php echo $form_class; ?>" id="<?php echo $type; ?>-form">
1606 <?php submit_button( '', 'hidden', 'save', false ); ?>
1607 <input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
1608 <?php wp_nonce_field('media-form'); ?>
1609
1610 <h3 class="media-title"><?php _e('Add media files from your computer'); ?></h3>
1611
1612 <?php media_upload_form( $errors ); ?>
1613
1614 <script type="text/javascript">
1615 //<![CDATA[
1616 jQuery(function($){
1617         var preloaded = $(".media-item.preloaded");
1618         if ( preloaded.length > 0 ) {
1619                 preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');});
1620         }
1621         updateMediaForm();
1622 });
1623 //]]>
1624 </script>
1625 <div id="media-items"><?php
1626
1627 if ( $id ) {
1628         if ( !is_wp_error($id) ) {
1629                 add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2);
1630                 echo get_media_items( $id, $errors );
1631         } else {
1632                 echo '<div id="media-upload-error">'.esc_html($id->get_error_message()).'</div></div>';
1633                 exit;
1634         }
1635 }
1636 ?></div>
1637
1638 <p class="savebutton ml-submit">
1639 <?php submit_button( __( 'Save all changes' ), 'button', 'save', false ); ?>
1640 </p>
1641 </form>
1642 <?php
1643 }
1644
1645 /**
1646  * {@internal Missing Short Description}}
1647  *
1648  * @since 2.7.0
1649  *
1650  * @param string $type
1651  * @param object $errors
1652  * @param integer $id
1653  */
1654 function media_upload_type_url_form($type = null, $errors = null, $id = null) {
1655         if ( null === $type )
1656                 $type = 'image';
1657
1658         media_upload_header();
1659
1660         $post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
1661
1662         $form_action_url = admin_url("media-upload.php?type=$type&tab=type&post_id=$post_id");
1663         $form_action_url = apply_filters('media_upload_form_url', $form_action_url, $type);
1664         $form_class = 'media-upload-form type-form validate';
1665
1666         if ( get_user_setting('uploader') )
1667                 $form_class .= ' html-uploader';
1668 ?>
1669
1670 <form enctype="multipart/form-data" method="post" action="<?php echo esc_attr($form_action_url); ?>" class="<?php echo $form_class; ?>" id="<?php echo $type; ?>-form">
1671 <input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
1672 <?php wp_nonce_field('media-form'); ?>
1673
1674 <h3 class="media-title"><?php _e('Insert media from another website'); ?></h3>
1675
1676 <script type="text/javascript">
1677 //<![CDATA[
1678 var addExtImage = {
1679
1680         width : '',
1681         height : '',
1682         align : 'alignnone',
1683
1684         insert : function() {
1685                 var t = this, html, f = document.forms[0], cls, title = '', alt = '', caption = '';
1686
1687                 if ( '' == f.src.value || '' == t.width )
1688                         return false;
1689
1690                 if ( f.alt.value )
1691                         alt = f.alt.value.replace(/'/g, '&#039;').replace(/"/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
1692
1693 <?php if ( ! apply_filters( 'disable_captions', '' ) ) { ?>
1694                 if ( f.caption.value ) {
1695                         caption = f.caption.value.replace(/\r\n|\r/g, '\n');
1696                         caption = caption.replace(/<[a-zA-Z0-9]+( [^<>]+)?>/g, function(a){
1697                                 return a.replace(/[\r\n\t]+/, ' ');
1698                         });
1699
1700                         caption = caption.replace(/\s*\n\s*/g, '<br />');
1701                 }
1702 <?php } ?>
1703
1704                 cls = caption ? '' : ' class="'+t.align+'"';
1705
1706                 html = '<img alt="'+alt+'" src="'+f.src.value+'"'+cls+' width="'+t.width+'" height="'+t.height+'" />';
1707
1708                 if ( f.url.value ) {
1709                         url = f.url.value.replace(/'/g, '&#039;').replace(/"/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
1710                         html = '<a href="'+url+'">'+html+'</a>';
1711                 }
1712
1713                 if ( caption )
1714                         html = '[caption id="" align="'+t.align+'" width="'+t.width+'"]'+html+caption+'[/caption]';
1715
1716                 var win = window.dialogArguments || opener || parent || top;
1717                 win.send_to_editor(html);
1718                 return false;
1719         },
1720
1721         resetImageData : function() {
1722                 var t = addExtImage;
1723
1724                 t.width = t.height = '';
1725                 document.getElementById('go_button').style.color = '#bbb';
1726                 if ( ! document.forms[0].src.value )
1727                         document.getElementById('status_img').innerHTML = '*';
1728                 else document.getElementById('status_img').innerHTML = '<img src="<?php echo esc_url( admin_url( 'images/no.png' ) ); ?>" alt="" />';
1729         },
1730
1731         updateImageData : function() {
1732                 var t = addExtImage;
1733
1734                 t.width = t.preloadImg.width;
1735                 t.height = t.preloadImg.height;
1736                 document.getElementById('go_button').style.color = '#333';
1737                 document.getElementById('status_img').innerHTML = '<img src="<?php echo esc_url( admin_url( 'images/yes.png' ) ); ?>" alt="" />';
1738         },
1739
1740         getImageData : function() {
1741                 if ( jQuery('table.describe').hasClass('not-image') )
1742                         return;
1743
1744                 var t = addExtImage, src = document.forms[0].src.value;
1745
1746                 if ( ! src ) {
1747                         t.resetImageData();
1748                         return false;
1749                 }
1750
1751                 document.getElementById('status_img').innerHTML = '<img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" width="16" />';
1752                 t.preloadImg = new Image();
1753                 t.preloadImg.onload = t.updateImageData;
1754                 t.preloadImg.onerror = t.resetImageData;
1755                 t.preloadImg.src = src;
1756         }
1757 }
1758
1759 jQuery(document).ready( function($) {
1760         $('.media-types input').click( function() {
1761                 $('table.describe').toggleClass('not-image', $('#not-image').prop('checked') );
1762         });
1763 });
1764
1765 //]]>
1766 </script>
1767
1768 <div id="media-items">
1769 <div class="media-item media-blank">
1770 <?php echo apply_filters( 'type_url_form_media', wp_media_insert_url_form( $type ) ); ?>
1771 </div>
1772 </div>
1773 </form>
1774 <?php
1775 }
1776
1777 /**
1778  * Adds gallery form to upload iframe
1779  *
1780  * @since 2.5.0
1781  *
1782  * @param array $errors
1783  */
1784 function media_upload_gallery_form($errors) {
1785         global $redir_tab, $type;
1786
1787         $redir_tab = 'gallery';
1788         media_upload_header();
1789
1790         $post_id = intval($_REQUEST['post_id']);
1791         $form_action_url = admin_url("media-upload.php?type=$type&tab=gallery&post_id=$post_id");
1792         $form_action_url = apply_filters('media_upload_form_url', $form_action_url, $type);
1793         $form_class = 'media-upload-form validate';
1794
1795         if ( get_user_setting('uploader') )
1796                 $form_class .= ' html-uploader';
1797 ?>
1798
1799 <script type="text/javascript">
1800 <!--
1801 jQuery(function($){
1802         var preloaded = $(".media-item.preloaded");
1803         if ( preloaded.length > 0 ) {
1804                 preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');});
1805                 updateMediaForm();
1806         }
1807 });
1808 -->
1809 </script>
1810 <div id="sort-buttons" class="hide-if-no-js">
1811 <span>
1812 <?php _e('All Tabs:'); ?>
1813 <a href="#" id="showall"><?php _e('Show'); ?></a>
1814 <a href="#" id="hideall" style="display:none;"><?php _e('Hide'); ?></a>
1815 </span>
1816 <?php _e('Sort Order:'); ?>
1817 <a href="#" id="asc"><?php _e('Ascending'); ?></a> |
1818 <a href="#" id="desc"><?php _e('Descending'); ?></a> |
1819 <a href="#" id="clear"><?php _ex('Clear', 'verb'); ?></a>
1820 </div>
1821 <form enctype="multipart/form-data" method="post" action="<?php echo esc_attr($form_action_url); ?>" class="<?php echo $form_class; ?>" id="gallery-form">
1822 <?php wp_nonce_field('media-form'); ?>
1823 <?php //media_upload_form( $errors ); ?>
1824 <table class="widefat" cellspacing="0">
1825 <thead><tr>
1826 <th><?php _e('Media'); ?></th>
1827 <th class="order-head"><?php _e('Order'); ?></th>
1828 <th class="actions-head"><?php _e('Actions'); ?></th>
1829 </tr></thead>
1830 </table>
1831 <div id="media-items">
1832 <?php add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2); ?>
1833 <?php echo get_media_items($post_id, $errors); ?>
1834 </div>
1835
1836 <p class="ml-submit">
1837 <?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false, array( 'id' => 'save-all', 'style' => 'display: none;' ) ); ?>
1838 <input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
1839 <input type="hidden" name="type" value="<?php echo esc_attr( $GLOBALS['type'] ); ?>" />
1840 <input type="hidden" name="tab" value="<?php echo esc_attr( $GLOBALS['tab'] ); ?>" />
1841 </p>
1842
1843 <div id="gallery-settings" style="display:none;">
1844 <div class="title"><?php _e('Gallery Settings'); ?></div>
1845 <table id="basic" class="describe"><tbody>
1846         <tr>
1847         <th scope="row" class="label">
1848                 <label>
1849                 <span class="alignleft"><?php _e('Link thumbnails to:'); ?></span>
1850                 </label>
1851         </th>
1852         <td class="field">
1853                 <input type="radio" name="linkto" id="linkto-file" value="file" />
1854                 <label for="linkto-file" class="radio"><?php _e('Image File'); ?></label>
1855
1856                 <input type="radio" checked="checked" name="linkto" id="linkto-post" value="post" />
1857                 <label for="linkto-post" class="radio"><?php _e('Attachment Page'); ?></label>
1858         </td>
1859         </tr>
1860
1861         <tr>
1862         <th scope="row" class="label">
1863                 <label>
1864                 <span class="alignleft"><?php _e('Order images by:'); ?></span>
1865                 </label>
1866         </th>
1867         <td class="field">
1868                 <select id="orderby" name="orderby">
1869                         <option value="menu_order" selected="selected"><?php _e('Menu order'); ?></option>
1870                         <option value="title"><?php _e('Title'); ?></option>
1871                         <option value="post_date"><?php _e('Date/Time'); ?></option>
1872                         <option value="rand"><?php _e('Random'); ?></option>
1873                 </select>
1874         </td>
1875         </tr>
1876
1877         <tr>
1878         <th scope="row" class="label">
1879                 <label>
1880                 <span class="alignleft"><?php _e('Order:'); ?></span>
1881                 </label>
1882         </th>
1883         <td class="field">
1884                 <input type="radio" checked="checked" name="order" id="order-asc" value="asc" />
1885                 <label for="order-asc" class="radio"><?php _e('Ascending'); ?></label>
1886
1887                 <input type="radio" name="order" id="order-desc" value="desc" />
1888                 <label for="order-desc" class="radio"><?php _e('Descending'); ?></label>
1889         </td>
1890         </tr>
1891
1892         <tr>
1893         <th scope="row" class="label">
1894                 <label>
1895                 <span class="alignleft"><?php _e('Gallery columns:'); ?></span>
1896                 </label>
1897         </th>
1898         <td class="field">
1899                 <select id="columns" name="columns">
1900                         <option value="1">1</option>
1901                         <option value="2">2</option>
1902                         <option value="3" selected="selected">3</option>
1903                         <option value="4">4</option>
1904                         <option value="5">5</option>
1905                         <option value="6">6</option>
1906                         <option value="7">7</option>
1907                         <option value="8">8</option>
1908                         <option value="9">9</option>
1909                 </select>
1910         </td>
1911         </tr>
1912 </tbody></table>
1913
1914 <p class="ml-submit">
1915 <input type="button" class="button" style="display:none;" onMouseDown="wpgallery.update();" name="insert-gallery" id="insert-gallery" value="<?php esc_attr_e( 'Insert gallery' ); ?>" />
1916 <input type="button" class="button" style="display:none;" onMouseDown="wpgallery.update();" name="update-gallery" id="update-gallery" value="<?php esc_attr_e( 'Update gallery settings' ); ?>" />
1917 </p>
1918 </div>
1919 </form>
1920 <?php
1921 }
1922
1923 /**
1924  * {@internal Missing Short Description}}
1925  *
1926  * @since 2.5.0
1927  *
1928  * @param array $errors
1929  */
1930 function media_upload_library_form($errors) {
1931         global $wpdb, $wp_query, $wp_locale, $type, $tab, $post_mime_types;
1932
1933         media_upload_header();
1934
1935         $post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
1936
1937         $form_action_url = admin_url("media-upload.php?type=$type&tab=library&post_id=$post_id");
1938         $form_action_url = apply_filters('media_upload_form_url', $form_action_url, $type);
1939         $form_class = 'media-upload-form validate';
1940
1941         if ( get_user_setting('uploader') )
1942                 $form_class .= ' html-uploader';
1943
1944         $_GET['paged'] = isset( $_GET['paged'] ) ? intval($_GET['paged']) : 0;
1945         if ( $_GET['paged'] < 1 )
1946                 $_GET['paged'] = 1;
1947         $start = ( $_GET['paged'] - 1 ) * 10;
1948         if ( $start < 1 )
1949                 $start = 0;
1950         add_filter( 'post_limits', create_function( '$a', "return 'LIMIT $start, 10';" ) );
1951
1952         list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query();
1953
1954 ?>
1955
1956 <form id="filter" action="" method="get">
1957 <input type="hidden" name="type" value="<?php echo esc_attr( $type ); ?>" />
1958 <input type="hidden" name="tab" value="<?php echo esc_attr( $tab ); ?>" />
1959 <input type="hidden" name="post_id" value="<?php echo (int) $post_id; ?>" />
1960 <input type="hidden" name="post_mime_type" value="<?php echo isset( $_GET['post_mime_type'] ) ? esc_attr( $_GET['post_mime_type'] ) : ''; ?>" />
1961 <input type="hidden" name="context" value="<?php echo isset( $_GET['context'] ) ? esc_attr( $_GET['context'] ) : ''; ?>" />
1962
1963 <p id="media-search" class="search-box">
1964         <label class="screen-reader-text" for="media-search-input"><?php _e('Search Media');?>:</label>
1965         <input type="search" id="media-search-input" name="s" value="<?php the_search_query(); ?>" />
1966         <?php submit_button( __( 'Search Media' ), 'button', '', false ); ?>
1967 </p>
1968
1969 <ul class="subsubsub">
1970 <?php
1971 $type_links = array();
1972 $_num_posts = (array) wp_count_attachments();
1973 $matches = wp_match_mime_types(array_keys($post_mime_types), array_keys($_num_posts));
1974 foreach ( $matches as $_type => $reals )
1975         foreach ( $reals as $real )
1976                 if ( isset($num_posts[$_type]) )
1977                         $num_posts[$_type] += $_num_posts[$real];
1978                 else
1979                         $num_posts[$_type] = $_num_posts[$real];
1980 // If available type specified by media button clicked, filter by that type
1981 if ( empty($_GET['post_mime_type']) && !empty($num_posts[$type]) ) {
1982         $_GET['post_mime_type'] = $type;
1983         list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query();
1984 }
1985 if ( empty($_GET['post_mime_type']) || $_GET['post_mime_type'] == 'all' )
1986         $class = ' class="current"';
1987 else
1988         $class = '';
1989 $type_links[] = "<li><a href='" . esc_url(add_query_arg(array('post_mime_type'=>'all', 'paged'=>false, 'm'=>false))) . "'$class>".__('All Types')."</a>";
1990 foreach ( $post_mime_types as $mime_type => $label ) {
1991         $class = '';
1992
1993         if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
1994                 continue;
1995
1996         if ( isset($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) )
1997                 $class = ' class="current"';
1998
1999         $type_links[] = "<li><a href='" . esc_url(add_query_arg(array('post_mime_type'=>$mime_type, 'paged'=>false))) . "'$class>" . sprintf( translate_nooped_plural( $label[2], $num_posts[$mime_type] ), "<span id='$mime_type-counter'>" . number_format_i18n( $num_posts[$mime_type] ) . '</span>') . '</a>';
2000 }
2001 echo implode(' | </li>', apply_filters( 'media_upload_mime_type_links', $type_links ) ) . '</li>';
2002 unset($type_links);
2003 ?>
2004 </ul>
2005
2006 <div class="tablenav">
2007
2008 <?php
2009 $page_links = paginate_links( array(
2010         'base' => add_query_arg( 'paged', '%#%' ),
2011         'format' => '',
2012         'prev_text' => __('&laquo;'),
2013         'next_text' => __('&raquo;'),
2014         'total' => ceil($wp_query->found_posts / 10),
2015         'current' => $_GET['paged']
2016 ));
2017
2018 if ( $page_links )
2019         echo "<div class='tablenav-pages'>$page_links</div>";
2020 ?>
2021
2022 <div class="alignleft actions">
2023 <?php
2024
2025 $arc_query = "SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = 'attachment' ORDER BY post_date DESC";
2026
2027 $arc_result = $wpdb->get_results( $arc_query );
2028
2029 $month_count = count($arc_result);
2030
2031 if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
2032 <select name='m'>
2033 <option<?php selected( @$_GET['m'], 0 ); ?> value='0'><?php _e('Show all dates'); ?></option>
2034 <?php
2035 foreach ($arc_result as $arc_row) {
2036         if ( $arc_row->yyear == 0 )
2037                 continue;
2038         $arc_row->mmonth = zeroise( $arc_row->mmonth, 2 );
2039
2040         if ( isset($_GET['m']) && ( $arc_row->yyear . $arc_row->mmonth == $_GET['m'] ) )
2041                 $default = ' selected="selected"';
2042         else
2043                 $default = '';
2044
2045         echo "<option$default value='" . esc_attr( $arc_row->yyear . $arc_row->mmonth ) . "'>";
2046         echo esc_html( $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear" );
2047         echo "</option>\n";
2048 }
2049 ?>
2050 </select>
2051 <?php } ?>
2052
2053 <?php submit_button( __( 'Filter &#187;' ), 'button', 'post-query-submit', false ); ?>
2054
2055 </div>
2056
2057 <br class="clear" />
2058 </div>
2059 </form>
2060
2061 <form enctype="multipart/form-data" method="post" action="<?php echo esc_attr($form_action_url); ?>" class="<?php echo $form_class; ?>" id="library-form">
2062
2063 <?php wp_nonce_field('media-form'); ?>
2064 <?php //media_upload_form( $errors ); ?>
2065
2066 <script type="text/javascript">
2067 <!--
2068 jQuery(function($){
2069         var preloaded = $(".media-item.preloaded");
2070         if ( preloaded.length > 0 ) {
2071                 preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');});
2072                 updateMediaForm();
2073         }
2074 });
2075 -->
2076 </script>
2077
2078 <div id="media-items">
2079 <?php add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2); ?>
2080 <?php echo get_media_items(null, $errors); ?>
2081 </div>
2082 <p class="ml-submit">
2083 <?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false ); ?>
2084 <input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
2085 </p>
2086 </form>
2087 <?php
2088 }
2089
2090 /**
2091  * Creates the form for external url
2092  *
2093  * @since 2.7.0
2094  *
2095  * @param string $default_view
2096  * @return string the form html
2097  */
2098 function wp_media_insert_url_form( $default_view = 'image' ) {
2099         if ( !apply_filters( 'disable_captions', '' ) ) {
2100                 $caption = '
2101                 <tr class="image-only">
2102                         <th valign="top" scope="row" class="label">
2103                                 <label for="caption"><span class="alignleft">' . __('Image Caption') . '</span></label>
2104                         </th>
2105                         <td class="field"><textarea id="caption" name="caption"></textarea></td>
2106                 </tr>
2107 ';
2108         } else {
2109                 $caption = '';
2110         }
2111
2112         $default_align = get_option('image_default_align');
2113         if ( empty($default_align) )
2114                 $default_align = 'none';
2115
2116         if ( 'image' == $default_view ) {
2117                 $view = 'image-only';
2118                 $table_class = '';
2119         } else {
2120                 $view = $table_class = 'not-image';
2121         }
2122
2123         return '
2124         <p class="media-types"><label><input type="radio" name="media_type" value="image" id="image-only"' . checked( 'image-only', $view, false ) . ' /> ' . __( 'Image' ) . '</label> &nbsp; &nbsp; <label><input type="radio" name="media_type" value="generic" id="not-image"' . checked( 'not-image', $view, false ) . ' /> ' . __( 'Audio, Video, or Other File' ) . '</label></p>
2125         <table class="describe ' . $table_class . '"><tbody>
2126                 <tr>
2127                         <th valign="top" scope="row" class="label" style="width:130px;">
2128                                 <label for="src"><span class="alignleft">' . __('URL') . '</span></label>
2129                                 <span class="alignright"><abbr id="status_img" title="required" class="required">*</abbr></span>
2130                         </th>
2131                         <td class="field"><input id="src" name="src" value="" type="text" aria-required="true" onblur="addExtImage.getImageData()" /></td>
2132                 </tr>
2133
2134                 <tr>
2135                         <th valign="top" scope="row" class="label">
2136                                 <label for="title"><span class="alignleft">' . __('Title') . '</span></label>
2137                                 <span class="alignright"><abbr title="required" class="required">*</abbr></span>
2138                         </th>
2139                         <td class="field"><input id="title" name="title" value="" type="text" aria-required="true" /></td>
2140                 </tr>
2141
2142                 <tr class="not-image"><td></td><td><p class="help">' . __('Link text, e.g. &#8220;Ransom Demands (PDF)&#8221;') . '</p></td></tr>
2143
2144                 <tr class="image-only">
2145                         <th valign="top" scope="row" class="label">
2146                                 <label for="alt"><span class="alignleft">' . __('Alternative Text') . '</span></label>
2147                         </th>
2148                         <td class="field"><input id="alt" name="alt" value="" type="text" aria-required="true" />
2149                         <p class="help">' . __('Alt text for the image, e.g. &#8220;The Mona Lisa&#8221;') . '</p></td>
2150                 </tr>
2151                 ' . $caption . '
2152                 <tr class="align image-only">
2153                         <th valign="top" scope="row" class="label"><p><label for="align">' . __('Alignment') . '</label></p></th>
2154                         <td class="field">
2155                                 <input name="align" id="align-none" value="none" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'none' ? ' checked="checked"' : '').' />
2156                                 <label for="align-none" class="align image-align-none-label">' . __('None') . '</label>
2157                                 <input name="align" id="align-left" value="left" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'left' ? ' checked="checked"' : '').' />
2158                                 <label for="align-left" class="align image-align-left-label">' . __('Left') . '</label>
2159                                 <input name="align" id="align-center" value="center" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'center' ? ' checked="checked"' : '').' />
2160                                 <label for="align-center" class="align image-align-center-label">' . __('Center') . '</label>
2161                                 <input name="align" id="align-right" value="right" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'right' ? ' checked="checked"' : '').' />
2162                                 <label for="align-right" class="align image-align-right-label">' . __('Right') . '</label>
2163                         </td>
2164                 </tr>
2165
2166                 <tr class="image-only">
2167                         <th valign="top" scope="row" class="label">
2168                                 <label for="url"><span class="alignleft">' . __('Link Image To:') . '</span></label>
2169                         </th>
2170                         <td class="field"><input id="url" name="url" value="" type="text" /><br />
2171
2172                         <button type="button" class="button" value="" onclick="document.forms[0].url.value=null">' . __('None') . '</button>
2173                         <button type="button" class="button" value="" onclick="document.forms[0].url.value=document.forms[0].src.value">' . __('Link to image') . '</button>
2174                         <p class="help">' . __('Enter a link URL or click above for presets.') . '</p></td>
2175                 </tr>
2176                 <tr class="image-only">
2177                         <td></td>
2178                         <td>
2179                                 <input type="button" class="button" id="go_button" style="color:#bbb;" onclick="addExtImage.insert()" value="' . esc_attr__('Insert into Post') . '" />
2180                         </td>
2181                 </tr>
2182                 <tr class="not-image">
2183                         <td></td>
2184                         <td>
2185                                 ' . get_submit_button( __( 'Insert into Post' ), 'button', 'insertonlybutton', false ) . '
2186                         </td>
2187                 </tr>
2188         </tbody></table>
2189 ';
2190
2191 }
2192
2193 /**
2194  * Displays the multi-file uploader message.
2195  *
2196  * @since 2.6.0
2197  */
2198 function media_upload_flash_bypass() {
2199         $browser_uploader = admin_url( 'media-new.php?browser-uploader' );
2200
2201         if ( $post = get_post() )
2202                 $browser_uploader .= '&amp;post_id=' . intval( $post->ID );
2203         elseif ( ! empty( $GLOBALS['post_ID'] ) )
2204                 $browser_uploader .= '&amp;post_id=' . intval( $GLOBALS['post_ID'] );
2205
2206         ?>
2207         <p class="upload-flash-bypass">
2208         <?php printf( __( 'You are using the multi-file uploader. Problems? Try the <a href="%1$s" target="%2$s">browser uploader</a> instead.' ), $browser_uploader, '_blank' ); ?>
2209         </p>
2210         <?php
2211 }
2212 add_action('post-plupload-upload-ui', 'media_upload_flash_bypass');
2213
2214 /**
2215  * Displays the browser's built-in uploader message.
2216  *
2217  * @since 2.6.0
2218  */
2219 function media_upload_html_bypass() {
2220         ?>
2221         <p class="upload-html-bypass hide-if-no-js">
2222        <?php _e('You are using the browser&#8217;s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.'); ?>
2223         </p>
2224         <?php
2225 }
2226 add_action('post-html-upload-ui', 'media_upload_html_bypass');
2227
2228 /**
2229  * Used to display a "After a file has been uploaded..." help message.
2230  *
2231  * @since 3.3.0
2232  */
2233 function media_upload_text_after() {}
2234
2235 /**
2236  * Displays the checkbox to scale images.
2237  *
2238  * @since 3.3.0
2239  */
2240 function media_upload_max_image_resize() {
2241         $checked = get_user_setting('upload_resize') ? ' checked="true"' : '';
2242         $a = $end = '';
2243
2244         if ( current_user_can( 'manage_options' ) ) {
2245                 $a = '<a href="' . esc_url( admin_url( 'options-media.php' ) ) . '" target="_blank">';
2246                 $end = '</a>';
2247         }
2248 ?>
2249 <p class="hide-if-no-js"><label>
2250 <input name="image_resize" type="checkbox" id="image_resize" value="true"<?php echo $checked; ?> />
2251 <?php
2252         /* translators: %1$s is link start tag, %2$s is link end tag, %3$d is width, %4$d is height*/
2253         printf( __( 'Scale images to match the large size selected in %1$simage options%2$s (%3$d &times; %4$d).' ), $a, $end, (int) get_option( 'large_size_w', '1024' ), (int) get_option( 'large_size_h', '1024' ) );
2254 ?>
2255 </label></p>
2256 <?php
2257 }
2258
2259 /**
2260  * Displays the out of storage quota message in Multisite.
2261  *
2262  * @since 3.5.0
2263  */
2264 function multisite_over_quota_message() {
2265         echo '<p>' . sprintf( __( 'Sorry, you have used all of your storage quota of %s MB.' ), get_space_allowed() ) . '</p>';
2266 }
2267
2268 /**
2269  * Displays the image and editor in the post editor
2270  *
2271  * @since 3.5.0
2272  */
2273 function edit_form_image_editor() {
2274         $post = get_post();
2275
2276         $open = isset( $_GET['image-editor'] );
2277         if ( $open )
2278                 require_once ABSPATH . 'wp-admin/includes/image-edit.php';
2279
2280         $thumb_url = false;
2281         if ( $attachment_id = intval( $post->ID ) )
2282                 $thumb_url = wp_get_attachment_image_src( $attachment_id, array( 900, 450 ), true );
2283
2284         $filename = esc_html( basename( $post->guid ) );
2285         $title = esc_attr( $post->post_title );
2286         $alt_text = get_post_meta( $post->ID, '_wp_attachment_image_alt', true );
2287
2288         $att_url = wp_get_attachment_url( $post->ID );
2289
2290         if ( wp_attachment_is_image( $post->ID ) ) :
2291                 $image_edit_button = '';
2292                 if ( wp_image_editor_supports( array( 'mime_type' => $post->post_mime_type ) ) ) {
2293                         $nonce = wp_create_nonce( "image_editor-$post->ID" );
2294                         $image_edit_button = "<input type='button' id='imgedit-open-btn-$post->ID' onclick='imageEdit.open( $post->ID, \"$nonce\" )' class='button' value='" . esc_attr__( 'Edit Image' ) . "' /> <span class='spinner'></span>";
2295                 }
2296         ?>
2297         <div class="wp_attachment_holder">
2298                 <div class="imgedit-response" id="imgedit-response-<?php echo $attachment_id; ?>"></div>
2299
2300                 <div<?php if ( $open ) echo ' style="display:none"'; ?> class="wp_attachment_image" id="media-head-<?php echo $attachment_id; ?>">
2301                         <p id="thumbnail-head-<?php echo $attachment_id; ?>"><img class="thumbnail" src="<?php echo set_url_scheme( $thumb_url[0] ); ?>" style="max-width:100%" alt="" /></p>
2302                         <p><?php echo $image_edit_button; ?></p>
2303                 </div>
2304                 <div<?php if ( ! $open ) echo ' style="display:none"'; ?> class="image-editor" id="image-editor-<?php echo $attachment_id; ?>">
2305                         <?php if ( $open ) wp_image_editor( $attachment_id ); ?>
2306                 </div>
2307         </div>
2308         <?php endif; ?>
2309
2310         <div class="wp_attachment_details">
2311                 <p>
2312                         <label for="attachment_caption"><strong><?php _e( 'Caption' ); ?></strong></label><br />
2313                         <textarea class="widefat" name="excerpt" id="attachment_caption"><?php echo $post->post_excerpt; ?></textarea>
2314                 </p>
2315
2316         <?php if ( 'image' === substr( $post->post_mime_type, 0, 5 ) ) : ?>
2317                 <p>
2318                         <label for="attachment_alt"><strong><?php _e( 'Alternative Text' ); ?></strong></label><br />
2319                         <input type="text" class="widefat" name="_wp_attachment_image_alt" id="attachment_alt" value="<?php echo esc_attr( $alt_text ); ?>" />
2320                 </p>
2321         <?php endif; ?>
2322
2323         <?php
2324                 $quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' );
2325                 $editor_args = array(
2326                         'textarea_name' => 'content',
2327                         'textarea_rows' => 5,
2328                         'media_buttons' => false,
2329                         'tinymce' => false,
2330                         'quicktags' => $quicktags_settings,
2331                 );
2332         ?>
2333
2334         <label for="content"><strong><?php _e( 'Description' ); ?></strong></label>
2335         <?php wp_editor( $post->post_content, 'attachment_content', $editor_args ); ?>
2336
2337         </div>
2338         <?php
2339         $extras = get_compat_media_markup( $post->ID );
2340         echo $extras['item'];
2341         echo '<input type="hidden" id="image-edit-context" value="edit-attachment" />' . "\n";
2342 }
2343
2344 /**
2345  * Displays non-editable attachment metadata in the publish metabox
2346  *
2347  * @since 3.5.0
2348  */
2349 function attachment_submitbox_metadata() {
2350         $post = get_post();
2351
2352         $filename = esc_html( basename( $post->guid ) );
2353
2354         $media_dims = '';
2355         $meta = wp_get_attachment_metadata( $post->ID );
2356         if ( is_array( $meta ) && array_key_exists( 'width', $meta ) && array_key_exists( 'height', $meta ) )
2357                 $media_dims .= "<span id='media-dims-$post->ID'>{$meta['width']}&nbsp;&times;&nbsp;{$meta['height']}</span> ";
2358         $media_dims = apply_filters( 'media_meta', $media_dims, $post );
2359
2360         $att_url = wp_get_attachment_url( $post->ID );
2361 ?>
2362         <div class="misc-pub-section">
2363                         <label for="attachment_url"><?php _e( 'File URL:' ); ?></label>
2364                         <input type="text" class="widefat urlfield" readonly="readonly" name="attachment_url" value="<?php echo esc_attr($att_url); ?>" />
2365         </div>
2366         <div class="misc-pub-section">
2367                 <?php _e( 'File name:' ); ?> <strong><?php echo $filename; ?></strong>
2368         </div>
2369         <div class="misc-pub-section">
2370                 <?php _e( 'File type:' ); ?> <strong><?php
2371                         if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) )
2372                                 echo esc_html( strtoupper( $matches[1] ) );
2373                         else
2374                                 echo strtoupper( str_replace( 'image/', '', $post->post_mime_type ) );
2375                 ?></strong>
2376         </div>
2377
2378 <?php if ( $media_dims ) : ?>
2379         <div class="misc-pub-section">
2380                 <?php _e( 'Dimensions:' ); ?> <strong><?php echo $media_dims; ?></strong>
2381         </div>
2382 <?php
2383         endif;
2384 }
2385
2386 add_filter( 'async_upload_image', 'get_media_item', 10, 2 );
2387 add_filter( 'async_upload_audio', 'get_media_item', 10, 2 );
2388 add_filter( 'async_upload_video', 'get_media_item', 10, 2 );
2389 add_filter( 'async_upload_file',  'get_media_item', 10, 2 );
2390
2391 add_action( 'media_upload_image', 'wp_media_upload_handler' );
2392 add_action( 'media_upload_audio', 'wp_media_upload_handler' );
2393 add_action( 'media_upload_video', 'wp_media_upload_handler' );
2394 add_action( 'media_upload_file',  'wp_media_upload_handler' );
2395
2396 add_filter( 'media_upload_gallery', 'media_upload_gallery' );
2397 add_filter( 'media_upload_library', 'media_upload_library' );
2398
2399 add_action( 'attachment_submitbox_misc_actions', 'attachment_submitbox_metadata' );