]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/media-template.php
WordPress 3.9.1
[autoinstalls/wordpress.git] / wp-includes / media-template.php
index d4840903de9fcc8b8c1bea00b7227a2c51c57202..25354618d90e279b4512d93fc8c2b9d60cc5403b 100644 (file)
@@ -7,6 +7,107 @@
  * @since 3.5.0
  */
 
  * @since 3.5.0
  */
 
+/**
+ * Output the markup for a audio tag to be used in an Underscore template
+ * when data.model is passed.
+ *
+ * @since 3.9.0
+ */
+function wp_underscore_audio_template() {
+       $audio_types = wp_get_audio_extensions();
+?>
+<audio style="visibility: hidden"
+       controls
+       class="wp-audio-shortcode"
+       width="{{ _.isUndefined( data.model.width ) ? 400 : data.model.width }}"
+       preload="{{ _.isUndefined( data.model.preload ) ? 'none' : data.model.preload }}"
+       <#
+       <?php foreach ( array( 'autoplay', 'loop' ) as $attr ):
+       ?>if ( ! _.isUndefined( data.model.<?php echo $attr ?> ) && data.model.<?php echo $attr ?> ) {
+               #> <?php echo $attr ?><#
+       }
+       <?php endforeach ?>#>
+>
+       <# if ( ! _.isEmpty( data.model.src ) ) { #>
+       <source src="{{ data.model.src }}" type="{{ wp.media.view.settings.embedMimes[ data.model.src.split('.').pop() ] }}" />
+       <# } #>
+
+       <?php foreach ( $audio_types as $type ):
+       ?><# if ( ! _.isEmpty( data.model.<?php echo $type ?> ) ) { #>
+       <source src="{{ data.model.<?php echo $type ?> }}" type="{{ wp.media.view.settings.embedMimes[ '<?php echo $type ?>' ] }}" />
+       <# } #>
+       <?php endforeach;
+?></audio>
+<?php
+}
+
+/**
+ * Output the markup for a video tag to be used in an Underscore template
+ * when data.model is passed.
+ *
+ * @since 3.9.0
+ */
+function wp_underscore_video_template() {
+       $video_types = wp_get_video_extensions();
+?>
+<#  var w, h, settings = wp.media.view.settings,
+               isYouTube = ! _.isEmpty( data.model.src ) && data.model.src.match(/youtube|youtu\.be/);
+
+       if ( settings.contentWidth && data.model.width >= settings.contentWidth ) {
+               w = settings.contentWidth;
+       } else {
+               w = data.model.width;
+       }
+
+       if ( w !== data.model.width ) {
+               h = Math.ceil( ( h * w ) / data.model.width );
+       } else {
+               h = data.model.height;
+       }
+#>
+<div style="max-width: 100%; width: {{ w }}px">
+<video controls
+       class="wp-video-shortcode{{ isYouTube ? ' youtube-video' : '' }}"
+       width="{{ w }}"
+       height="{{ h }}"
+       <?php
+       $props = array( 'poster' => '', 'preload' => 'metadata' );
+       foreach ( $props as $key => $value ):
+               if ( empty( $value ) ) {
+               ?><#
+               if ( ! _.isUndefined( data.model.<?php echo $key ?> ) && data.model.<?php echo $key ?> ) {
+                       #> <?php echo $key ?>="{{ data.model.<?php echo $key ?> }}"<#
+               } #>
+               <?php } else {
+                       echo $key ?>="{{ _.isUndefined( data.model.<?php echo $key ?> ) ? '<?php echo $value ?>' : data.model.<?php echo $key ?> }}"<?php
+               }
+       endforeach;
+       ?><#
+       <?php foreach ( array( 'autoplay', 'loop' ) as $attr ):
+       ?> if ( ! _.isUndefined( data.model.<?php echo $attr ?> ) && data.model.<?php echo $attr ?> ) {
+               #> <?php echo $attr ?><#
+       }
+       <?php endforeach ?>#>
+>
+       <# if ( ! _.isEmpty( data.model.src ) ) {
+               if ( isYouTube ) { #>
+               <source src="{{ data.model.src }}" type="video/youtube" />
+               <# } else { #>
+               <source src="{{ data.model.src }}" type="{{ settings.embedMimes[ data.model.src.split('.').pop() ] }}" />
+               <# }
+       } #>
+
+       <?php foreach ( $video_types as $type ):
+       ?><# if ( data.model.<?php echo $type ?> ) { #>
+       <source src="{{ data.model.<?php echo $type ?> }}" type="{{ settings.embedMimes[ '<?php echo $type ?>' ] }}" />
+       <# } #>
+       <?php endforeach; ?>
+       {{{ data.model.content }}}
+</video>
+</div>
+<?php
+}
+
 /**
  * Prints the templates used in the media manager.
  *
 /**
  * Prints the templates used in the media manager.
  *
@@ -41,6 +142,12 @@ function wp_print_media_templates() {
                </div>
        </script>
 
                </div>
        </script>
 
+       <script type="text/html" id="tmpl-uploader-editor">
+               <div class="uploader-editor-content">
+                       <div class="uploader-editor-title"><?php _e( 'Drop files to upload' ); ?></div>
+               </div>
+       </script>
+
        <script type="text/html" id="tmpl-uploader-inline">
                <# var messageClass = data.message ? 'has-upload-message' : 'no-upload-message'; #>
                <div class="uploader-inline-content {{ messageClass }}">
        <script type="text/html" id="tmpl-uploader-inline">
                <# var messageClass = data.message ? 'has-upload-message' : 'no-upload-message'; #>
                <div class="uploader-inline-content {{ messageClass }}">
@@ -48,10 +155,12 @@ function wp_print_media_templates() {
                        <h3 class="upload-message">{{ data.message }}</h3>
                <# } #>
                <?php if ( ! _device_can_upload() ) : ?>
                        <h3 class="upload-message">{{ data.message }}</h3>
                <# } #>
                <?php if ( ! _device_can_upload() ) : ?>
-                       <h3 class="upload-instructions"><?php _e('The web browser on your device cannot be used to upload files. You may be able to use the <a href="http://wordpress.org/extend/mobile/">native app for your device</a> instead.'); ?></h3>
+                       <h3 class="upload-instructions"><?php printf( __('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.'), 'https://wordpress.org/mobile/' ); ?></h3>
                <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?>
                        <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3>
                <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?>
                        <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3>
-                       <?php do_action( 'upload_ui_over_quota' ); ?>
+                       <?php
+                       /** This action is documented in wp-admin/includes/media.php */
+                       do_action( 'upload_ui_over_quota' ); ?>
 
                <?php else : ?>
                        <div class="upload-ui">
 
                <?php else : ?>
                        <div class="upload-ui">
@@ -63,13 +172,17 @@ function wp_print_media_templates() {
 
                        <div class="post-upload-ui">
                                <?php
 
                        <div class="post-upload-ui">
                                <?php
+                               /** This action is documented in wp-admin/includes/media.php */
                                do_action( 'pre-upload-ui' );
                                do_action( 'pre-upload-ui' );
+                               /** This action is documented in wp-admin/includes/media.php */
                                do_action( 'pre-plupload-upload-ui' );
 
                                if ( 10 === remove_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' ) ) {
                                do_action( 'pre-plupload-upload-ui' );
 
                                if ( 10 === remove_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' ) ) {
+                                       /** This action is documented in wp-admin/includes/media.php */
                                        do_action( 'post-plupload-upload-ui' );
                                        add_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' );
                                } else {
                                        do_action( 'post-plupload-upload-ui' );
                                        add_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' );
                                } else {
+                                       /** This action is documented in wp-admin/includes/media.php */
                                        do_action( 'post-plupload-upload-ui' );
                                }
 
                                        do_action( 'post-plupload-upload-ui' );
                                }
 
@@ -93,14 +206,15 @@ function wp_print_media_templates() {
                                        printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($byte_sizes[$u]) );
                                ?></p>
 
                                        printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($byte_sizes[$u]) );
                                ?></p>
 
-                               <?php if ( ( $GLOBALS['is_IE'] || $GLOBALS['is_opera']) && $max_upload_size > 100 * 1024 * 1024 ) :
-                                       $browser_uploader = admin_url( 'media-new.php?browser-uploader&post_id=' ) . '{{ data.postId }}';
-                                       ?>
-                                       <p class="big-file-warning"><?php printf( __( 'Your browser has some limitations uploading large files with the multi-file uploader. Please use the <a href="%1$s" target="%2$s">browser uploader</a> for files over 100MB.' ),
-                                               $browser_uploader, '_blank' ); ?></p>
-                               <?php endif; ?>
+                               <# if ( data.suggestedWidth && data.suggestedHeight ) { #>
+                                       <p class="suggested-dimensions">
+                                               <?php _e( 'Suggested image dimensions:' ); ?> {{data.suggestedWidth}} &times; {{data.suggestedHeight}}
+                                       </p>
+                               <# } #>
 
 
-                               <?php do_action( 'post-upload-ui' ); ?>
+                               <?php
+                               /** This action is documented in wp-admin/includes/media.php */
+                               do_action( 'post-upload-ui' ); ?>
                        </div>
                <?php endif; ?>
                </div>
                        </div>
                <?php endif; ?>
                </div>
@@ -145,11 +259,11 @@ function wp_print_media_templates() {
                        <# } #>
 
                        <# if ( data.buttons.close ) { #>
                        <# } #>
 
                        <# if ( data.buttons.close ) { #>
-                               <a class="close media-modal-icon" href="#" title="<?php _e('Remove'); ?>"></a>
+                               <a class="close media-modal-icon" href="#" title="<?php esc_attr_e('Remove'); ?>"></a>
                        <# } #>
 
                        <# if ( data.buttons.check ) { #>
                        <# } #>
 
                        <# if ( data.buttons.check ) { #>
-                               <a class="check" href="#" title="<?php _e('Deselect'); ?>"><div class="media-modal-icon"></div></a>
+                               <a class="check" href="#" title="<?php esc_attr_e('Deselect'); ?>"><div class="media-modal-icon"></div></a>
                        <# } #>
                </div>
                <#
                        <# } #>
                </div>
                <#
@@ -205,8 +319,16 @@ function wp_print_media_templates() {
                                        <# } #>
                                <# } #>
 
                                        <# } #>
                                <# } #>
 
+                               <# if ( data.fileLength ) { #>
+                                       <div class="file-length"><?php _e( 'Length:' ); ?> {{ data.fileLength }}</div>
+                               <# } #>
+
                                <# if ( ! data.uploading && data.can.remove ) { #>
                                <# if ( ! data.uploading && data.can.remove ) { #>
-                                       <a class="delete-attachment" href="#"><?php _e( 'Delete Permanently' ); ?></a>
+                                       <?php if ( MEDIA_TRASH ): ?>
+                                               <a class="trash-attachment" href="#"><?php _e( 'Trash' ); ?></a>
+                                       <?php else: ?>
+                                               <a class="delete-attachment" href="#"><?php _e( 'Delete Permanently' ); ?></a>
+                                       <?php endif; ?>
                                <# } #>
 
                                <div class="compat-meta">
                                <# } #>
 
                                <div class="compat-meta">
@@ -281,25 +403,47 @@ function wp_print_media_templates() {
 
                <div class="setting">
                        <label>
 
                <div class="setting">
                        <label>
-                               <span><?php _e('Link To'); ?></span>
+                               <# if ( data.model.canEmbed ) { #>
+                                       <span><?php _e('Embed or Link'); ?></span>
+                               <# } else { #>
+                                       <span><?php _e('Link To'); ?></span>
+                               <# } #>
+
                                <select class="link-to"
                                        data-setting="link"
                                <select class="link-to"
                                        data-setting="link"
-                                       <# if ( data.userSettings ) { #>
+                                       <# if ( data.userSettings && ! data.model.canEmbed ) { #>
                                                data-user-setting="urlbutton"
                                        <# } #>>
 
                                                data-user-setting="urlbutton"
                                        <# } #>>
 
-                                       <option value="custom">
-                                               <?php esc_attr_e('Custom URL'); ?>
+                               <# if ( data.model.canEmbed ) { #>
+                                       <option value="embed" selected>
+                                               <?php esc_attr_e('Embed Media Player'); ?>
                                        </option>
                                        </option>
+                                       <option value="file">
+                               <# } else { #>
                                        <option value="file" selected>
                                        <option value="file" selected>
+                               <# } #>
+                                       <# if ( data.model.canEmbed ) { #>
+                                               <?php esc_attr_e('Link to Media File'); ?>
+                                       <# } else { #>
                                                <?php esc_attr_e('Media File'); ?>
                                                <?php esc_attr_e('Media File'); ?>
+                                       <# } #>
                                        </option>
                                        <option value="post">
                                        </option>
                                        <option value="post">
+                                       <# if ( data.model.canEmbed ) { #>
+                                               <?php esc_attr_e('Link to Attachment Page'); ?>
+                                       <# } else { #>
                                                <?php esc_attr_e('Attachment Page'); ?>
                                                <?php esc_attr_e('Attachment Page'); ?>
+                                       <# } #>
+                                       </option>
+                               <# if ( 'image' === data.type ) { #>
+                                       <option value="custom">
+                                               <?php esc_attr_e('Custom URL'); ?>
                                        </option>
                                        <option value="none">
                                                <?php esc_attr_e('None'); ?>
                                        </option>
                                        </option>
                                        <option value="none">
                                                <?php esc_attr_e('None'); ?>
                                        </option>
+                               <# } #>
                                </select>
                        </label>
                        <input type="text" class="link-to-custom" data-setting="linkUrl" />
                                </select>
                        </label>
                        <input type="text" class="link-to-custom" data-setting="linkUrl" />
@@ -314,7 +458,7 @@ function wp_print_media_templates() {
                                                data-user-setting="imgsize"
                                        <# } #>>
                                        <?php
                                                data-user-setting="imgsize"
                                        <# } #>>
                                        <?php
-
+                                       /** This filter is documented in wp-admin/includes/media.php */
                                        $sizes = apply_filters( 'image_size_names_choose', array(
                                                'thumbnail' => __('Thumbnail'),
                                                'medium'    => __('Medium'),
                                        $sizes = apply_filters( 'image_size_names_choose', array(
                                                'thumbnail' => __('Thumbnail'),
                                                'medium'    => __('Medium'),
@@ -353,6 +497,9 @@ function wp_print_media_templates() {
                                <option value="file">
                                        <?php esc_attr_e('Media File'); ?>
                                </option>
                                <option value="file">
                                        <?php esc_attr_e('Media File'); ?>
                                </option>
+                               <option value="none">
+                                       <?php esc_attr_e('None'); ?>
+                               </option>
                        </select>
                </label>
 
                        </select>
                </label>
 
@@ -374,6 +521,40 @@ function wp_print_media_templates() {
                </label>
        </script>
 
                </label>
        </script>
 
+       <script type="text/html" id="tmpl-playlist-settings">
+               <h3><?php _e( 'Playlist Settings' ); ?></h3>
+
+               <# var emptyModel = _.isEmpty( data.model ),
+                       isVideo = 'video' === data.controller.get('library').props.get('type'); #>
+
+               <label class="setting">
+                       <input type="checkbox" data-setting="tracklist" <# if ( emptyModel ) { #>
+                               checked="checked"
+                       <# } #> />
+                       <# if ( isVideo ) { #>
+                       <span><?php _e( 'Show Video List' ); ?></span>
+                       <# } else { #>
+                       <span><?php _e( 'Show Tracklist' ); ?></span>
+                       <# } #>
+               </label>
+
+               <# if ( ! isVideo ) { #>
+               <label class="setting">
+                       <input type="checkbox" data-setting="artists" <# if ( emptyModel ) { #>
+                               checked="checked"
+                       <# } #> />
+                       <span><?php _e( 'Show Artist Name in Tracklist' ); ?></span>
+               </label>
+               <# } #>
+
+               <label class="setting">
+                       <input type="checkbox" data-setting="images" <# if ( emptyModel ) { #>
+                               checked="checked"
+                       <# } #> />
+                       <span><?php _e( 'Show Images' ); ?></span>
+               </label>
+       </script>
+
        <script type="text/html" id="tmpl-embed-link-settings">
                <label class="setting">
                        <span><?php _e('Title'); ?></span>
        <script type="text/html" id="tmpl-embed-link-settings">
                <label class="setting">
                        <span><?php _e('Title'); ?></span>
@@ -386,7 +567,9 @@ function wp_print_media_templates() {
                        <img src="{{ data.model.url }}" draggable="false" />
                </div>
 
                        <img src="{{ data.model.url }}" draggable="false" />
                </div>
 
-               <?php if ( ! apply_filters( 'disable_captions', '' ) ) : ?>
+               <?php
+               /** This filter is documented in wp-admin/includes/media.php */
+               if ( ! apply_filters( 'disable_captions', '' ) ) : ?>
                        <label class="setting caption">
                                <span><?php _e('Caption'); ?></span>
                                <textarea data-setting="caption" />
                        <label class="setting caption">
                                <span><?php _e('Caption'); ?></span>
                                <textarea data-setting="caption" />
@@ -461,7 +644,423 @@ function wp_print_media_templates() {
                        }
                </style>
        </script>
                        }
                </style>
        </script>
+
+       <script type="text/html" id="tmpl-image-details">
+               <div class="media-embed">
+                       <div class="embed-media-settings">
+                               <div class="column-image">
+                                       <div class="image">
+                                               <img src="{{ data.model.url }}" draggable="false" />
+
+                                               <# if ( data.attachment && window.imageEdit ) { #>
+                                                       <div class="actions">
+                                                               <input type="button" class="edit-attachment button" value="<?php esc_attr_e( 'Edit Original' ); ?>" />
+                                                               <input type="button" class="replace-attachment button" value="<?php esc_attr_e( 'Replace' ); ?>" />
+                                                       </div>
+                                               <# } #>
+                                       </div>
+                               </div>
+                               <div class="column-settings">
+                                       <?php
+                                       /** This filter is documented in wp-admin/includes/media.php */
+                                       if ( ! apply_filters( 'disable_captions', '' ) ) : ?>
+                                               <label class="setting caption">
+                                                       <span><?php _e('Caption'); ?></span>
+                                                       <textarea data-setting="caption">{{ data.model.caption }}</textarea>
+                                               </label>
+                                       <?php endif; ?>
+
+                                       <label class="setting alt-text">
+                                               <span><?php _e('Alternative Text'); ?></span>
+                                               <input type="text" data-setting="alt" value="{{ data.model.alt }}" />
+                                       </label>
+
+                                       <h3><?php _e( 'Display Settings' ); ?></h3>
+                                       <div class="setting align">
+                                               <span><?php _e('Align'); ?></span>
+                                               <div class="button-group button-large" data-setting="align">
+                                                       <button class="button" value="left">
+                                                               <?php esc_attr_e('Left'); ?>
+                                                       </button>
+                                                       <button class="button" value="center">
+                                                               <?php esc_attr_e('Center'); ?>
+                                                       </button>
+                                                       <button class="button" value="right">
+                                                               <?php esc_attr_e('Right'); ?>
+                                                       </button>
+                                                       <button class="button active" value="none">
+                                                               <?php esc_attr_e('None'); ?>
+                                                       </button>
+                                               </div>
+                                       </div>
+
+                                       <# if ( data.attachment ) { #>
+                                               <# if ( 'undefined' !== typeof data.attachment.sizes ) { #>
+                                                       <label class="setting size">
+                                                               <span><?php _e('Size'); ?></span>
+                                                               <select class="size" name="size"
+                                                                       data-setting="size"
+                                                                       <# if ( data.userSettings ) { #>
+                                                                               data-user-setting="imgsize"
+                                                                       <# } #>>
+                                                                       <?php
+                                                                       /** This filter is documented in wp-admin/includes/media.php */
+                                                                       $sizes = apply_filters( 'image_size_names_choose', array(
+                                                                               'thumbnail' => __('Thumbnail'),
+                                                                               'medium'    => __('Medium'),
+                                                                               'large'     => __('Large'),
+                                                                               'full'      => __('Full Size'),
+                                                                       ) );
+
+                                                                       foreach ( $sizes as $value => $name ) : ?>
+                                                                               <#
+                                                                               var size = data.sizes['<?php echo esc_js( $value ); ?>'];
+                                                                               if ( size ) { #>
+                                                                                       <option value="<?php echo esc_attr( $value ); ?>">
+                                                                                               <?php echo esc_html( $name ); ?> &ndash; {{ size.width }} &times; {{ size.height }}
+                                                                                       </option>
+                                                                               <# } #>
+                                                                       <?php endforeach; ?>
+                                                                       <option value="<?php echo esc_attr( 'custom' ); ?>">
+                                                                               <?php _e( 'Custom Size' ); ?>
+                                                                       </option>
+                                                               </select>
+                                                       </label>
+                                               <# } #>
+                                                       <div class="custom-size<# if ( data.model.size !== 'custom' ) { #> hidden<# } #>">
+                                                               <label><span><?php _e( 'Width' ); ?> <small>(px)</small></span> <input data-setting="customWidth" type="number" step="1" value="{{ data.model.customWidth }}" /></label><span class="sep">&times;</span><label><span><?php _e( 'Height' ); ?> <small>(px)</small></span><input data-setting="customHeight" type="number" step="1" value="{{ data.model.customHeight }}" /></label>
+                                                       </div>
+                                       <# } #>
+
+                                       <div class="setting link-to">
+                                               <span><?php _e('Link To'); ?></span>
+                                               <select data-setting="link">
+                                               <# if ( data.attachment ) { #>
+                                                       <option value="file">
+                                                               <?php esc_attr_e('Media File'); ?>
+                                                       </option>
+                                                       <option value="post">
+                                                               <?php esc_attr_e('Attachment Page'); ?>
+                                                       </option>
+                                               <# } else { #>
+                                                       <option value="file">
+                                                               <?php esc_attr_e('Image URL'); ?>
+                                                       </option>
+                                               <# } #>
+                                                       <option value="custom">
+                                                               <?php esc_attr_e('Custom URL'); ?>
+                                                       </option>
+                                                       <option value="none">
+                                                               <?php esc_attr_e('None'); ?>
+                                                       </option>
+                                               </select>
+                                               <input type="text" class="link-to-custom" data-setting="linkUrl" />
+                                       </div>
+                                       <div class="advanced-section">
+                                               <h3><a class="advanced-toggle" href="#"><?php _e('Advanced Options'); ?></a></h3>
+                                               <div class="advanced-settings hidden">
+                                                       <div class="advanced-image">
+                                                               <label class="setting title-text">
+                                                                       <span><?php _e('Image Title Attribute'); ?></span>
+                                                                       <input type="text" data-setting="title" value="{{ data.model.title }}" />
+                                                               </label>
+                                                               <label class="setting extra-classes">
+                                                                       <span><?php _e('Image CSS Class'); ?></span>
+                                                                       <input type="text" data-setting="extraClasses" value="{{ data.model.extraClasses }}" />
+                                                               </label>
+                                                       </div>
+                                                       <div class="advanced-link">
+                                                               <div class="setting link-target">
+                                                                       <label><input type="checkbox" data-setting="linkTargetBlank" value="_blank" <# if ( data.model.linkTargetBlank ) { #>checked="checked"<# } #>><?php _e( 'Open link in a new window/tab' ); ?></label>
+                                                               </div>
+                                                               <label class="setting link-rel">
+                                                                       <span><?php _e('Link Rel'); ?></span>
+                                                                       <input type="text" data-setting="linkRel" value="{{ data.model.linkClassName }}" />
+                                                               </label>
+                                                               <label class="setting link-class-name">
+                                                                       <span><?php _e('Link CSS Class'); ?></span>
+                                                                       <input type="text" data-setting="linkClassName" value="{{ data.model.linkClassName }}" />
+                                                               </label>
+                                                       </div>
+                                               </div>
+                                       </div>
+                               </div>
+                       </div>
+               </div>
+       </script>
+
+       <script type="text/html" id="tmpl-image-editor">
+               <div id="media-head-{{ data.id }}"></div>
+               <div id="image-editor-{{ data.id }}"></div>
+       </script>
+
+       <script type="text/html" id="tmpl-audio-details">
+               <# var ext, html5types = {
+                       mp3: wp.media.view.settings.embedMimes.mp3,
+                       ogg: wp.media.view.settings.embedMimes.ogg
+               }; #>
+
+               <?php $audio_types = wp_get_audio_extensions(); ?>
+               <div class="media-embed media-embed-details">
+                       <div class="embed-media-settings embed-audio-settings">
+                               <?php wp_underscore_audio_template() ?>
+
+                               <# if ( ! _.isEmpty( data.model.src ) ) {
+                                       ext = data.model.src.split('.').pop();
+                                       if ( html5types[ ext ] ) {
+                                               delete html5types[ ext ];
+                                       }
+                               #>
+                               <label class="setting">
+                                       <span>SRC</span>
+                                       <input type="text" disabled="disabled" data-setting="src" value="{{ data.model.src }}" />
+                                       <a class="remove-setting"><?php _e( 'Remove' ); ?></a>
+                               </label>
+                               <# } #>
+                               <?php
+
+                               foreach ( $audio_types as $type ):
+                               ?><# if ( ! _.isEmpty( data.model.<?php echo $type ?> ) ) {
+                                       if ( ! _.isUndefined( html5types.<?php echo $type ?> ) ) {
+                                               delete html5types.<?php echo $type ?>;
+                                       }
+                               #>
+                               <label class="setting">
+                                       <span><?php echo strtoupper( $type ) ?></span>
+                                       <input type="text" disabled="disabled" data-setting="<?php echo $type ?>" value="{{ data.model.<?php echo $type ?> }}" />
+                                       <a class="remove-setting"><?php _e( 'Remove' ); ?></a>
+                               </label>
+                               <# } #>
+                               <?php endforeach ?>
+
+                               <# if ( ! _.isEmpty( html5types ) ) { #>
+                               <div class="setting">
+                                       <span><?php _e( 'Add alternate sources for maximum HTML5 playback:' ) ?></span>
+                                       <div class="button-large">
+                                       <# _.each( html5types, function (mime, type) { #>
+                                       <button class="button add-media-source" data-mime="{{ mime }}">{{ type }}</button>
+                                       <# } ) #>
+                                       </div>
+                               </div>
+                               <# } #>
+
+                               <div class="setting preload">
+                                       <span><?php _e( 'Preload' ); ?></span>
+                                       <div class="button-group button-large" data-setting="preload">
+                                               <button class="button" value="auto"><?php _ex( 'Auto', 'auto preload' ); ?></button>
+                                               <button class="button" value="metadata"><?php _e( 'Metadata' ); ?></button>
+                                               <button class="button active" value="none"><?php _e( 'None' ); ?></button>
+                                       </div>
+                               </div>
+
+                               <label class="setting checkbox-setting">
+                                       <input type="checkbox" data-setting="autoplay" />
+                                       <span><?php _e( 'Autoplay' ); ?></span>
+                               </label>
+
+                               <label class="setting checkbox-setting">
+                                       <input type="checkbox" data-setting="loop" />
+                                       <span><?php _e( 'Loop' ); ?></span>
+                               </label>
+                       </div>
+               </div>
+       </script>
+
+       <script type="text/html" id="tmpl-video-details">
+               <# var ext, html5types = {
+                       mp4: wp.media.view.settings.embedMimes.mp4,
+                       ogv: wp.media.view.settings.embedMimes.ogv,
+                       webm: wp.media.view.settings.embedMimes.webm
+               }; #>
+
+               <?php $video_types = wp_get_video_extensions(); ?>
+               <div class="media-embed media-embed-details">
+                       <div class="embed-media-settings embed-video-settings">
+                               <div class="wp-video-holder">
+                               <#
+                               var isYouTube = ! _.isEmpty( data.model.src ) && data.model.src.match(/youtube|youtu\.be/);
+                                       w = ! data.model.width || data.model.width > 640 ? 640 : data.model.width,
+                                       h = ! data.model.height ? 360 : data.model.height;
+
+                               if ( data.model.width && w !== data.model.width ) {
+                                       h = Math.ceil( ( h * w ) / data.model.width );
+                               }
+                               #>
+
+                               <?php wp_underscore_video_template() ?>
+
+                               <# if ( ! _.isEmpty( data.model.src ) ) {
+                                       ext = data.model.src.split('.').pop();
+                                       if ( html5types[ ext ] ) {
+                                               delete html5types[ ext ];
+                                       }
+                               #>
+                               <label class="setting">
+                                       <span>SRC</span>
+                                       <input type="text" disabled="disabled" data-setting="src" value="{{ data.model.src }}" />
+                                       <a class="remove-setting"><?php _e( 'Remove' ); ?></a>
+                               </label>
+                               <# } #>
+                               <?php foreach ( $video_types as $type ):
+                               ?><# if ( ! _.isEmpty( data.model.<?php echo $type ?> ) ) {
+                                       if ( ! _.isUndefined( html5types.<?php echo $type ?> ) ) {
+                                               delete html5types.<?php echo $type ?>;
+                                       }
+                               #>
+                               <label class="setting">
+                                       <span><?php echo strtoupper( $type ) ?></span>
+                                       <input type="text" disabled="disabled" data-setting="<?php echo $type ?>" value="{{ data.model.<?php echo $type ?> }}" />
+                                       <a class="remove-setting"><?php _e( 'Remove' ); ?></a>
+                               </label>
+                               <# } #>
+                               <?php endforeach ?>
+                               </div>
+
+                               <# if ( ! _.isEmpty( html5types ) ) { #>
+                               <div class="setting">
+                                       <span><?php _e( 'Add alternate sources for maximum HTML5 playback:' ); ?></span>
+                                       <div class="button-large">
+                                       <# _.each( html5types, function (mime, type) { #>
+                                       <button class="button add-media-source" data-mime="{{ mime }}">{{ type }}</button>
+                                       <# } ) #>
+                                       </div>
+                               </div>
+                               <# } #>
+
+                               <# if ( ! _.isEmpty( data.model.poster ) ) { #>
+                               <label class="setting">
+                                       <span><?php _e( 'Poster Image' ); ?></span>
+                                       <input type="text" disabled="disabled" data-setting="poster" value="{{ data.model.poster }}" />
+                                       <a class="remove-setting"><?php _e( 'Remove' ); ?></a>
+                               </label>
+                               <# } #>
+                               <div class="setting preload">
+                                       <span><?php _e( 'Preload' ); ?></span>
+                                       <div class="button-group button-large" data-setting="preload">
+                                               <button class="button" value="auto"><?php _ex( 'Auto', 'auto preload' ); ?></button>
+                                               <button class="button" value="metadata"><?php _e( 'Metadata' ); ?></button>
+                                               <button class="button active" value="none"><?php _e( 'None' ); ?></button>
+                                       </div>
+                               </div>
+
+                               <label class="setting checkbox-setting">
+                                       <input type="checkbox" data-setting="autoplay" />
+                                       <span><?php _e( 'Autoplay' ); ?></span>
+                               </label>
+
+                               <label class="setting checkbox-setting">
+                                       <input type="checkbox" data-setting="loop" />
+                                       <span><?php _e( 'Loop' ); ?></span>
+                               </label>
+
+                               <label class="setting" data-setting="content">
+                                       <span><?php _e( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ); ?></span>
+                                       <#
+                                       var content = '';
+                                       if ( ! _.isEmpty( data.model.content ) ) {
+                                               var tracks = jQuery( data.model.content ).filter( 'track' );
+                                               _.each( tracks.toArray(), function (track) {
+                                                       content += track.outerHTML; #>
+                                               <p>
+                                                       <input class="content-track" type="text" value="{{ track.outerHTML }}" />
+                                                       <a class="remove-setting remove-track"><?php _e( 'Remove' ); ?></a>
+                                               </p>
+                                               <# } ); #>
+                                       <# } else { #>
+                                       <em><?php _e( 'There are no associated subtitles.' ); ?></em>
+                                       <# } #>
+                                       <textarea class="hidden content-setting">{{ content }}</textarea>
+                               </label>
+                       </div>
+               </div>
+       </script>
+
+       <script type="text/html" id="tmpl-editor-gallery">
+               <div class="toolbar">
+                       <div class="dashicons dashicons-edit edit"></div><div class="dashicons dashicons-no-alt remove"></div>
+               </div>
+               <# if ( data.attachments ) { #>
+                       <div class="gallery gallery-columns-{{ data.columns }}">
+                               <# _.each( data.attachments, function( attachment, index ) { #>
+                                       <dl class="gallery-item">
+                                               <dt class="gallery-icon">
+                                                       <# if ( attachment.thumbnail ) { #>
+                                                               <img src="{{ attachment.thumbnail.url }}" width="{{ attachment.thumbnail.width }}" height="{{ attachment.thumbnail.height }}" />
+                                                       <# } else { #>
+                                                               <img src="{{ attachment.url }}" />
+                                                       <# } #>
+                                               </dt>
+                                               <dd class="wp-caption-text gallery-caption">
+                                                       {{ attachment.caption }}
+                                               </dd>
+                                       </dl>
+                                       <# if ( index % data.columns === data.columns - 1 ) { #>
+                                               <br style="clear: both;">
+                                       <# } #>
+                               <# } ); #>
+                       </div>
+               <# } else { #>
+                       <div class="wpview-error">
+                               <div class="dashicons dashicons-format-gallery"></div><p><?php _e( 'No items found.' ); ?></p>
+                       </div>
+               <# } #>
+       </script>
+
+       <script type="text/html" id="tmpl-editor-audio">
+               <div class="toolbar">
+                       <div class="dashicons dashicons-edit edit"></div>
+                       <div class="dashicons dashicons-no-alt remove"></div>
+               </div>
+               <?php wp_underscore_audio_template() ?>
+               <div class="wpview-overlay"></div>
+       </script>
+
+       <script type="text/html" id="tmpl-editor-video">
+               <div class="toolbar">
+                       <div class="dashicons dashicons-edit edit"></div>
+                       <div class="dashicons dashicons-no-alt remove"></div>
+               </div>
+               <?php wp_underscore_video_template() ?>
+               <div class="wpview-overlay"></div>
+       </script>
+
+       <?php wp_underscore_playlist_templates() ?>
+
+       <script type="text/html" id="tmpl-editor-playlist">
+               <div class="toolbar">
+                       <div class="dashicons dashicons-edit edit"></div>
+                       <div class="dashicons dashicons-no-alt remove"></div>
+               </div>
+               <# if ( data.tracks ) { #>
+                       <div class="wp-playlist wp-{{ data.type }}-playlist wp-playlist-{{ data.style }}">
+                               <# if ( 'audio' === data.type ){ #>
+                               <div class="wp-playlist-current-item"></div>
+                               <# } #>
+                               <{{ data.type }} controls="controls" preload="none" <#
+                                       if ( data.width ) { #> width="{{ data.width }}"<# }
+                                       #><# if ( data.height ) { #> height="{{ data.height }}"<# } #>></{{ data.type }}>
+                               <div class="wp-playlist-next"></div>
+                               <div class="wp-playlist-prev"></div>
+                       </div>
+                       <div class="wpview-overlay"></div>
+               <# } else { #>
+                       <div class="wpview-error">
+                               <div class="dashicons dashicons-video-alt3"></div><p><?php _e( 'No items found.' ); ?></p>
+                       </div>
+               <# } #>
+       </script>
+
+       <script type="text/html" id="tmpl-crop-content">
+               <img class="crop-image" src="{{ data.url }}">
+               <div class="upload-errors"></div>
+       </script>
+
        <?php
 
        <?php
 
+       /**
+        * Fires when the custom Backbone media templates are printed.
+        *
+        * @since 3.5.0
+        */
        do_action( 'print_media_templates' );
 }
        do_action( 'print_media_templates' );
 }