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