2008-01-09 08:14:29 +00:00
<? php
2008-10-02 01:03:26 +00:00
/**
* WordPress Administration Media API.
*
* @package WordPress
* @subpackage Administration
*/
/**
2012-09-16 18:31:42 +00:00
* Defines the default media upload tabs
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @return array default tabs
2008-10-02 01:03:26 +00:00
*/
2008-02-26 19:30:10 +00:00
function media_upload_tabs () {
2008-01-09 08:14:29 +00:00
$_default_tabs = array (
2008-11-26 02:27:37 +00:00
'type' => __ ( 'From Computer' ), // handler action suffix => tab text
'type_url' => __ ( 'From URL' ),
2008-02-28 21:29:51 +00:00
'gallery' => __ ( 'Gallery' ),
2008-11-26 02:27:37 +00:00
'library' => __ ( 'Media Library' )
2008-01-09 08:14:29 +00:00
);
2014-01-06 05:48:12 +00:00
/**
* Filter the available tabs in the legacy (pre-3.5.0) media popup.
*
* @since 2.5.0
*
* @param array $_default_tabs An array of media tabs.
*/
return apply_filters ( 'media_upload_tabs' , $_default_tabs );
2008-01-09 08:14:29 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Adds the gallery tab back to the tabs array if post has image attachments
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param array $tabs
* @return array $tabs with gallery if post has image attachment
2008-10-02 01:03:26 +00:00
*/
2008-02-28 21:29:51 +00:00
function update_gallery_tab ( $tabs ) {
2008-02-26 19:30:10 +00:00
global $wpdb ;
2008-12-08 07:38:05 +00:00
2008-02-26 19:30:10 +00:00
if ( ! isset ( $_REQUEST [ 'post_id' ]) ) {
2008-02-28 21:29:51 +00:00
unset ( $tabs [ 'gallery' ]);
2008-02-26 19:30:10 +00:00
return $tabs ;
}
2008-12-08 07:38:05 +00:00
2009-11-16 07:54:02 +00:00
$post_id = intval ( $_REQUEST [ 'post_id' ]);
if ( $post_id )
$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 ) ) );
2008-02-26 19:30:10 +00:00
2008-12-08 07:38:05 +00:00
if ( empty ( $attachments ) ) {
unset ( $tabs [ 'gallery' ]);
return $tabs ;
}
2008-02-28 21:29:51 +00:00
$tabs [ 'gallery' ] = sprintf ( __ ( 'Gallery (%s)' ), "<span id='attachments-count'> $attachments </span>" );
2008-02-26 19:30:10 +00:00
return $tabs ;
}
2008-02-28 21:29:51 +00:00
add_filter ( 'media_upload_tabs' , 'update_gallery_tab' );
2008-02-26 19:30:10 +00:00
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*/
2008-02-26 19:30:10 +00:00
function the_media_upload_tabs () {
2012-04-10 01:19:30 +00:00
global $redir_tab ;
2008-02-26 19:30:10 +00:00
$tabs = media_upload_tabs ();
2012-04-12 00:16:37 +00:00
$default = 'type' ;
2011-11-18 08:43:16 +00:00
2008-02-13 18:36:40 +00:00
if ( ! empty ( $tabs ) ) {
2008-02-27 08:31:10 +00:00
echo "<ul id='sidemenu'> \n " ;
2014-01-06 05:48:12 +00:00
if ( isset ( $redir_tab ) && array_key_exists ( $redir_tab , $tabs ) ) {
2008-07-10 03:49:52 +00:00
$current = $redir_tab ;
2014-01-06 05:48:12 +00:00
} elseif ( isset ( $_GET [ 'tab' ]) && array_key_exists ( $_GET [ 'tab' ], $tabs ) ) {
2008-02-13 18:36:40 +00:00
$current = $_GET [ 'tab' ];
2014-01-06 05:48:12 +00:00
} else {
/** This filter is documented in wp-admin/media-upload.php */
$current = apply_filters ( 'media_upload_default_tab' , $default );
}
2009-04-22 11:10:15 +00:00
2008-02-13 18:36:40 +00:00
foreach ( $tabs as $callback => $text ) {
2008-02-27 08:31:10 +00:00
$class = '' ;
2011-11-18 08:43:16 +00:00
2008-02-27 08:31:10 +00:00
if ( $current == $callback )
$class = " class='current'" ;
2011-11-18 08:43:16 +00:00
$href = add_query_arg ( array ( 'tab' => $callback , 's' => false , 'paged' => false , 'post_mime_type' => false , 'm' => false ));
2009-05-18 16:00:33 +00:00
$link = "<a href='" . esc_url ( $href ) . "' $class > $text </a>" ;
2009-05-05 19:43:53 +00:00
echo " \t <li id='" . esc_attr ( "tab- $callback " ) . "'> $link </li> \n " ;
2008-02-13 18:36:40 +00:00
}
echo "</ul> \n " ;
}
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param integer $id image attachment id
* @param string $caption image caption
* @param string $alt image alt attribute
* @param string $title image title attribute
* @param string $align image css alignment property
* @param string $url image src url
* @param string|bool $rel image rel attribute
* @param string $size image size (thumbnail, medium, large, full or added with add_image_size() )
* @return string the html to insert into editor
2008-10-02 01:03:26 +00:00
*/
2009-10-19 05:09:41 +00:00
function get_image_send_to_editor ( $id , $caption , $title , $align , $url = '' , $rel = false , $size = 'medium' , $alt = '' ) {
2008-01-09 08:14:29 +00:00
2012-11-21 11:50:30 +00:00
$html = get_image_tag ( $id , $alt , '' , $align , $size );
2008-01-09 08:14:29 +00:00
2009-05-05 19:43:53 +00:00
$rel = $rel ? ' rel="attachment wp-att-' . esc_attr ( $id ) . '"' : '' ;
2008-03-06 19:48:54 +00:00
2008-01-09 08:14:29 +00:00
if ( $url )
2009-10-18 06:14:16 +00:00
$html = '<a href="' . esc_attr ( $url ) . " \" $rel > $html </a>" ;
2008-02-28 21:29:51 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter the image HTML markup to send to the editor.
*
* @since 2.5.0
*
* @param string $html The image HTML markup to send.
* @param int $id The attachment id.
* @param string $caption The image caption.
* @param string $title The image title.
* @param string $align The image alignment.
* @param string $url The image source URL.
* @param string $size The image size.
* @param string $alt The image alternative, or alt, text.
*/
2009-10-19 05:09:41 +00:00
$html = apply_filters ( 'image_send_to_editor' , $html , $id , $caption , $title , $align , $url , $size , $alt );
2008-01-09 08:14:29 +00:00
2008-02-16 21:54:47 +00:00
return $html ;
2008-01-09 08:14:29 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Adds image shortcode with caption to editor
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.6.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param string $html
* @param integer $id
* @param string $caption image caption
* @param string $alt image alt attribute
* @param string $title image title attribute
* @param string $align image css alignment property
* @param string $url image src url
* @param string $size image size (thumbnail, medium, large, full or added with add_image_size() )
* @return string
2008-10-02 01:03:26 +00:00
*/
2009-10-19 05:09:41 +00:00
function image_add_caption ( $html , $id , $caption , $title , $align , $url , $size , $alt = '' ) {
2008-07-02 18:41:11 +00:00
2014-09-21 09:56:17 +00:00
/**
* Filter the caption text.
*
* Note: If the caption text is empty, the caption shortcode will not be appended
* to the image HTML when inserted into the editor.
*
2014-11-28 08:56:24 +00:00
* Passing an empty value also prevents the {@see 'image_add_caption_shortcode'}
* filter from being evaluated at the end of {@see image_add_caption()}.
2014-09-21 09:56:17 +00:00
*
* @since 4.1.0
*
* @param string $caption The original caption text.
2014-09-21 10:11:16 +00:00
* @param int $id The attachment ID.
2014-09-21 09:56:17 +00:00
*/
2014-09-21 10:11:16 +00:00
$caption = apply_filters ( 'image_add_caption_text' , $caption , $id );
2014-09-21 09:56:17 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter whether to disable captions.
*
* Prevents image captions from being appended to image HTML when inserted into the editor.
*
* @since 2.6.0
*
* @param bool $bool Whether to disable appending captions. Returning true to the filter
* will disable captions. Default empty string.
*/
2009-10-19 05:09:41 +00:00
if ( empty ( $caption ) || apply_filters ( 'disable_captions' , '' ) )
2009-05-26 22:33:02 +00:00
return $html ;
2008-07-02 18:41:11 +00:00
$id = ( 0 < ( int ) $id ) ? 'attachment_' . $id : '' ;
2012-03-14 21:53:11 +00:00
if ( ! preg_match ( '/width=["\']([0-9]+)/' , $html , $matches ) )
2009-05-26 22:33:02 +00:00
return $html ;
2008-07-02 18:41:11 +00:00
$width = $matches [ 1 ];
2012-03-14 21:53:11 +00:00
$caption = str_replace ( array ( " \r\n " , " \r " ), " \n " , $caption );
$caption = preg_replace_callback ( '/<[a-zA-Z0-9]+(?: [^<>]+>)*/' , '_cleanup_image_add_caption' , $caption );
2014-07-17 09:14:16 +00:00
// Convert any remaining line breaks to <br>.
2012-05-02 01:14:52 +00:00
$caption = preg_replace ( '/[ \n\t]*\n[ \t]*/' , '<br />' , $caption );
2010-11-09 00:42:35 +00:00
2009-05-26 22:33:02 +00:00
$html = preg_replace ( '/(class=["\'][^\'"]*)align(none|left|right|center)\s?/' , '$1' , $html );
if ( empty ( $align ) )
$align = 'none' ;
2008-07-02 18:41:11 +00:00
2012-05-02 01:14:52 +00:00
$shcode = '[caption id="' . $id . '" align="align' . $align . '" width="' . $width . '"]' . $html . ' ' . $caption . '[/caption]' ;
2008-07-02 18:41:11 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter the image HTML markup including the caption shortcode.
*
* @since 2.6.0
*
* @param string $shcode The image HTML markup with caption shortcode.
* @param string $html The image HTML markup.
*/
2008-07-02 18:41:11 +00:00
return apply_filters ( 'image_add_caption_shortcode' , $shcode , $html );
}
2009-10-19 05:09:41 +00:00
add_filter ( 'image_send_to_editor' , 'image_add_caption' , 20 , 8 );
2008-07-02 18:41:11 +00:00
2012-04-06 20:05:31 +00:00
/**
* Private preg_replace callback used in image_add_caption()
*
* @access private
* @since 3.4.0
*/
2012-04-06 19:52:34 +00:00
function _cleanup_image_add_caption ( $matches ) {
2014-07-17 09:14:16 +00:00
// Remove any line breaks from inside the tags.
2012-05-02 01:14:52 +00:00
return preg_replace ( '/[\r\n\t]+/' , ' ' , $matches [ 0 ] );
2012-03-05 07:31:31 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Adds image html to editor
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param string $html
2008-10-02 01:03:26 +00:00
*/
2008-01-09 08:14:29 +00:00
function media_send_to_editor ( $html ) {
2008-10-02 01:03:26 +00:00
?>
2008-01-09 08:14:29 +00:00
<script type="text/javascript">
2008-06-24 21:59:06 +00:00
/* <![CDATA[ */
var win = window.dialogArguments || opener || parent || top;
win.send_to_editor('<?php echo addslashes($html); ?>');
/* ]]> */
2008-02-05 06:47:27 +00:00
</script>
2009-10-24 11:43:42 +00:00
<?php
2008-02-16 21:54:47 +00:00
exit;
2008-01-09 08:14:29 +00:00
}
2008-10-02 01:03:26 +00:00
/**
* This handles the file upload POST itself, creating the attachment post.
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2010-02-22 16:54:51 +00:00
* @param string $file_id Index into the {@link $_FILES} array of the upload
* @param int $post_id The post ID the media is associated with
* @param array $post_data allows you to overwrite some of the attachment
* @param array $overrides allows you to override the {@link wp_handle_upload()} behavior
2014-03-31 22:33:15 +00:00
* @return int|WP_Error ID of the attachment or a WP_Error object on failure.
2008-10-02 01:03:26 +00:00
*/
2010-02-22 16:54:51 +00:00
function media_handle_upload($file_id, $post_id, $post_data = array(), $overrides = array( 'test_form' => false )) {
2008-11-14 03:26:06 +00:00
2008-11-14 03:56:09 +00:00
$time = current_time('mysql');
2008-11-14 03:26:06 +00:00
if ( $post = get_post($post_id) ) {
if ( substr( $post->post_date, 0, 4 ) > 0 )
$time = $post->post_date;
}
2008-11-13 18:22:00 +00:00
2009-05-05 05:57:56 +00:00
$name = $_FILES[$file_id]['name'];
2008-11-13 18:22:00 +00:00
$file = wp_handle_upload($_FILES[$file_id], $overrides, $time);
2008-01-25 19:21:11 +00:00
if ( isset($file['error']) )
2008-07-23 18:35:38 +00:00
return new WP_Error( 'upload_error', $file['error'] );
2009-05-24 23:47:49 +00:00
2009-05-05 05:57:56 +00:00
$name_parts = pathinfo($name);
$name = trim( substr( $name, 0, -(1 + strlen($name_parts['extension'])) ) );
2008-01-25 19:21:11 +00:00
$url = $file['url'];
$type = $file['type'];
$file = $file['file'];
2009-05-05 05:57:56 +00:00
$title = $name;
2008-01-25 19:21:11 +00:00
$content = '';
2013-04-12 22:27:24 +00:00
if ( preg_match( '#^audio#', $type ) ) {
$meta = wp_read_audio_metadata( $file );
if ( ! empty( $meta['title'] ) )
$title = $meta['title'];
$content = '';
if ( ! empty( $title ) ) {
if ( ! empty( $meta['album'] ) && ! empty( $meta['artist'] ) ) {
/* translators: 1: audio track title, 2: album title, 3: artist name */
2013-07-24 05:47:00 +00:00
$content .= sprintf( __( '"%1$s" from %2$s by %3$s.' ), $title, $meta['album'], $meta['artist'] );
2013-04-12 22:27:24 +00:00
} else if ( ! empty( $meta['album'] ) ) {
/* translators: 1: audio track title, 2: album title */
2013-07-24 05:47:00 +00:00
$content .= sprintf( __( '"%1$s" from %2$s.' ), $title, $meta['album'] );
2013-04-12 22:27:24 +00:00
} else if ( ! empty( $meta['artist'] ) ) {
/* translators: 1: audio track title, 2: artist name */
2013-07-24 05:47:00 +00:00
$content .= sprintf( __( '"%1$s" by %2$s.' ), $title, $meta['artist'] );
2013-04-12 22:27:24 +00:00
} else {
2013-07-24 05:47:00 +00:00
$content .= sprintf( __( '"%s".' ), $title );
2013-04-12 22:27:24 +00:00
}
} else if ( ! empty( $meta['album'] ) ) {
if ( ! empty( $meta['artist'] ) ) {
/* translators: 1: audio album title, 2: artist name */
$content .= sprintf( __( '%1$s by %2$s.' ), $meta['album'], $meta['artist'] );
} else {
$content .= $meta['album'] . '.';
}
} else if ( ! empty( $meta['artist'] ) ) {
$content .= $meta['artist'] . '.';
}
if ( ! empty( $meta['year'] ) )
$content .= ' ' . sprintf( __( 'Released: %d.' ), $meta['year'] );
if ( ! empty( $meta['track_number'] ) ) {
$track_number = explode( '/', $meta['track_number'] );
if ( isset( $track_number[1] ) )
$content .= ' ' . sprintf( __( 'Track %1$s of %2$s.' ), number_format_i18n( $track_number[0] ), number_format_i18n( $track_number[1] ) );
else
$content .= ' ' . sprintf( __( 'Track %1$s.' ), number_format_i18n( $track_number[0] ) );
}
if ( ! empty( $meta['genre'] ) )
$content .= ' ' . sprintf( __( 'Genre: %s.' ), $meta['genre'] );
2014-07-17 09:14:16 +00:00
// Use image exif/iptc data for title and caption defaults if possible.
2014-09-11 20:15:17 +00:00
} elseif ( 0 === strpos( $type, 'image/' ) && $image_meta = @wp_read_image_metadata( $file ) ) {
2010-02-20 09:17:34 +00:00
if ( trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) )
2008-01-25 19:21:11 +00:00
$title = $image_meta['title'];
2010-02-20 09:17:34 +00:00
if ( trim( $image_meta['caption'] ) )
2008-01-25 19:21:11 +00:00
$content = $image_meta['caption'];
}
// Construct the attachment array
$attachment = array_merge( array(
'post_mime_type' => $type,
'guid' => $url,
'post_parent' => $post_id,
'post_title' => $title,
'post_content' => $content,
), $post_data );
2011-06-27 15:56:42 +00:00
// This should never be set as it would then overwrite an existing attachment.
if ( isset( $attachment['ID'] ) )
unset( $attachment['ID'] );
2008-01-25 19:21:11 +00:00
// Save the data
2008-11-14 23:01:16 +00:00
$id = wp_insert_attachment($attachment, $file, $post_id);
2008-01-25 19:21:11 +00:00
if ( !is_wp_error($id) ) {
wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );
}
2008-01-09 08:14:29 +00:00
return $id;
}
2008-10-02 01:03:26 +00:00
/**
2010-11-15 12:53:11 +00:00
* This handles a sideloaded file in the same way as an uploaded file is handled by {@link media_handle_upload()}
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.6.0
2008-10-02 01:03:26 +00:00
*
2010-11-15 12:53:11 +00:00
* @param array $file_array Array similar to a {@link $_FILES} upload array
* @param int $post_id The post ID the media is associated with
* @param string $desc Description of the sideloaded file
* @param array $post_data allows you to overwrite some of the attachment
* @return int|object The ID of the attachment or a WP_Error on failure
2008-10-02 01:03:26 +00:00
*/
2008-06-10 16:13:06 +00:00
function media_handle_sideload($file_array, $post_id, $desc = null, $post_data = array()) {
2008-06-04 16:13:55 +00:00
$overrides = array('test_form'=>false);
2009-09-24 01:54:07 +00:00
2012-10-03 18:49:37 +00:00
$time = current_time( 'mysql' );
if ( $post = get_post( $post_id ) ) {
if ( substr( $post->post_date, 0, 4 ) > 0 )
$time = $post->post_date;
}
$file = wp_handle_sideload( $file_array, $overrides, $time );
2008-06-04 16:13:55 +00:00
if ( isset($file['error']) )
2008-07-23 18:35:38 +00:00
return new WP_Error( 'upload_error', $file['error'] );
2008-06-04 16:13:55 +00:00
$url = $file['url'];
$type = $file['type'];
$file = $file['file'];
$title = preg_replace('/\.[^.]+$/', '', basename($file));
$content = '';
2014-07-17 09:14:16 +00:00
// Use image exif/iptc data for title and caption defaults if possible.
2008-06-04 16:13:55 +00:00
if ( $image_meta = @wp_read_image_metadata($file) ) {
2010-02-20 09:17:34 +00:00
if ( trim( $image_meta['title'] ) && ! is_numeric( sanitize_title( $image_meta['title'] ) ) )
2008-06-04 16:13:55 +00:00
$title = $image_meta['title'];
2010-02-20 09:17:34 +00:00
if ( trim( $image_meta['caption'] ) )
2008-06-04 16:13:55 +00:00
$content = $image_meta['caption'];
}
2008-07-10 03:49:52 +00:00
2011-09-17 18:27:32 +00:00
if ( isset( $desc ) )
$title = $desc;
2008-06-04 16:13:55 +00:00
2014-07-17 09:14:16 +00:00
// Construct the attachment array.
2008-06-04 16:13:55 +00:00
$attachment = array_merge( array(
'post_mime_type' => $type,
'guid' => $url,
'post_parent' => $post_id,
'post_title' => $title,
'post_content' => $content,
), $post_data );
2011-06-27 15:56:42 +00:00
// This should never be set as it would then overwrite an existing attachment.
if ( isset( $attachment['ID'] ) )
unset( $attachment['ID'] );
2009-09-17 20:36:59 +00:00
// Save the attachment metadata
2008-11-15 18:10:35 +00:00
$id = wp_insert_attachment($attachment, $file, $post_id);
2010-11-15 12:53:11 +00:00
if ( !is_wp_error($id) )
2008-06-04 16:13:55 +00:00
wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $file ) );
2010-11-15 12:53:11 +00:00
2008-06-23 16:00:12 +00:00
return $id;
2008-06-04 16:13:55 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Adds the iframe to display content for the media upload page
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-12-01 01:00:22 +00:00
* @param string|callable $content_func
2008-10-02 01:03:26 +00:00
*/
2008-01-09 08:14:29 +00:00
function wp_iframe($content_func /* ... */) {
2011-10-17 20:57:32 +00:00
_wp_admin_html_begin();
2008-01-09 08:14:29 +00:00
?>
2008-03-21 09:20:04 +00:00
<title><?php bloginfo('name') ?> › <?php _e('Uploads'); ?> — <?php _e('WordPress'); ?></title>
2008-03-02 20:17:30 +00:00
<?php
2011-08-21 03:46:43 +00:00
2008-05-24 17:03:51 +00:00
wp_enqueue_style( 'colors' );
2010-02-20 08:19:44 +00:00
// Check callback name for 'media'
2010-12-05 03:01:42 +00:00
if ( ( is_array( $content_func ) && ! empty( $content_func[1] ) && 0 === strpos( (string) $content_func[1], 'media' ) )
|| ( ! is_array( $content_func ) && 0 === strpos( $content_func, 'media' ) ) )
2008-05-24 17:03:51 +00:00
wp_enqueue_style( 'media' );
2009-04-04 10:21:43 +00:00
wp_enqueue_style( 'ie' );
2008-02-11 07:53:10 +00:00
?>
2008-01-09 08:14:29 +00:00
<script type="text/javascript">
//<![CDATA[
2009-04-04 10:21:43 +00:00
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();}}};
2012-02-08 16:12:11 +00:00
var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>', pagenow = 'media-upload-popup', adminpage = 'media-upload-popup',
2010-12-02 12:44:48 +00:00
isRtl = <?php echo (int) is_rtl(); ?>;
2008-01-09 08:14:29 +00:00
//]]>
</script>
<?php
2014-01-06 05:48:12 +00:00
/** This action is documented in wp-admin/admin-header.php */
do_action( 'admin_enqueue_scripts', 'media-upload-popup' );
/**
2014-03-25 08:05:15 +00:00
* Fires when admin styles enqueued for the legacy (pre-3.5.0) media upload popup are printed.
2014-01-06 05:48:12 +00:00
*
* @since 2.9.0
*/
do_action( 'admin_print_styles-media-upload-popup' );
/** This action is documented in wp-admin/admin-header.php */
do_action( 'admin_print_styles' );
/**
2014-03-25 08:05:15 +00:00
* Fires when admin scripts enqueued for the legacy (pre-3.5.0) media upload popup are printed.
2014-01-06 05:48:12 +00:00
*
* @since 2.9.0
*/
do_action( 'admin_print_scripts-media-upload-popup' );
/** This action is documented in wp-admin/admin-header.php */
do_action( 'admin_print_scripts' );
/**
2014-03-25 08:05:15 +00:00
* Fires when scripts enqueued for the admin header for the legacy (pre-3.5.0)
* media upload popup are printed.
2014-01-06 05:48:12 +00:00
*
* @since 2.9.0
*/
do_action( 'admin_head-media-upload-popup' );
/** This action is documented in wp-admin/admin-header.php */
do_action( 'admin_head' );
if ( is_string( $content_func ) ) {
/**
* Fires in the admin header for each specific form tab in the legacy
* (pre-3.5.0) media upload popup.
*
2014-11-30 11:28:24 +00:00
* The dynamic portion of the hook, `$content_func`, refers to the form
2014-01-06 05:48:12 +00:00
* callback for the media upload type. Possible values include
* 'media_upload_type_form', 'media_upload_type_url_form', and
* 'media_upload_library_form'.
*
* @since 2.5.0
*/
2008-01-09 08:14:29 +00:00
do_action( "admin_head_{$content_func}" );
2014-01-06 05:48:12 +00:00
}
2008-01-09 08:14:29 +00:00
?>
</head>
2012-11-30 13:40:59 +00:00
<body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-core-ui no-js">
2011-05-19 16:12:13 +00:00
<script type="text/javascript">
2011-11-18 08:43:16 +00:00
document.body.className = document.body.className.replace('no-js', 'js');
2011-05-19 16:12:13 +00:00
</script>
2008-01-09 08:14:29 +00:00
<?php
$args = func_get_args();
$args = array_slice($args, 1);
call_user_func_array($content_func, $args);
2009-05-24 23:47:49 +00:00
2014-01-06 05:48:12 +00:00
/** This action is documented in wp-admin/admin-footer.php */
do_action( 'admin_print_footer_scripts' );
2008-01-09 08:14:29 +00:00
?>
2009-04-04 10:21:43 +00:00
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
2008-01-09 08:14:29 +00:00
</body>
</html>
<?php
}
2010-11-22 17:17:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Adds the media button to the editor
2010-11-22 17:17:26 +00:00
*
2010-12-20 09:25:21 +00:00
* @since 2.5.0
2012-09-16 18:31:42 +00:00
*
* @param string $editor_id
2010-11-22 17:17:26 +00:00
*/
2011-08-03 10:19:00 +00:00
function media_buttons($editor_id = 'content') {
2014-06-26 01:05:14 +00:00
static $instance = 0;
$instance++;
2012-11-26 22:03:37 +00:00
$post = get_post();
if ( ! $post && ! empty( $GLOBALS['post_ID'] ) )
$post = $GLOBALS['post_ID'];
2012-11-14 09:06:10 +00:00
wp_enqueue_media( array(
2012-11-26 22:03:37 +00:00
'post' => $post
2012-11-14 09:06:10 +00:00
) );
2012-09-27 20:04:34 +00:00
2012-11-09 04:40:56 +00:00
$img = '<span class="wp-media-buttons-icon"></span> ';
2011-10-05 21:07:04 +00:00
2014-09-02 09:08:16 +00:00
$id_attribute = $instance === 1 ? ' id="insert-media-button"' : '';
printf( '<a href="#"%s class="button insert-media add_media" data-editor="%s" title="%s">%s</a>',
$id_attribute,
2014-06-26 01:05:14 +00:00
esc_attr( $editor_id ),
esc_attr__( 'Add Media' ),
$img . __( 'Add Media' )
);
2014-01-06 05:48:12 +00:00
/**
* Filter the legacy (pre-3.5.0) media buttons.
*
* @since 2.5.0
* @deprecated 3.5.0 Use 'media_buttons' action instead.
*
* @param string $string Media buttons context. Default empty.
*/
$legacy_filter = apply_filters( 'media_buttons_context', '' );
2012-11-26 22:32:35 +00:00
if ( $legacy_filter ) {
// #WP22559. Close <a> if a plugin started by closing <a> to open their own <a> tag.
if ( 0 === stripos( trim( $legacy_filter ), '</a>' ) )
$legacy_filter .= '</a>';
echo $legacy_filter;
}
2010-11-22 17:17:26 +00:00
}
add_action( 'media_buttons', 'media_buttons' );
2014-11-03 07:09:23 +00:00
/**
*
* @global int $post_ID
* @param string $type
* @param int $post_id
* @param string $tab
* @return string
*/
2012-04-05 00:20:28 +00:00
function get_upload_iframe_src( $type = null, $post_id = null, $tab = null ) {
2011-09-29 21:47:52 +00:00
global $post_ID;
2012-02-27 19:23:03 +00:00
if ( empty( $post_id ) )
$post_id = $post_ID;
2012-04-05 00:20:28 +00:00
$upload_iframe_src = add_query_arg( 'post_id', (int) $post_id, admin_url('media-upload.php') );
2010-11-22 17:17:26 +00:00
2011-10-05 21:07:04 +00:00
if ( $type && 'media' != $type )
2010-11-22 17:17:26 +00:00
$upload_iframe_src = add_query_arg('type', $type, $upload_iframe_src);
2011-09-29 21:47:52 +00:00
2012-04-05 00:20:28 +00:00
if ( ! empty( $tab ) )
$upload_iframe_src = add_query_arg('tab', $tab, $upload_iframe_src);
2014-01-06 05:48:12 +00:00
/**
* Filter the upload iframe source URL for a specific media type.
*
2014-11-30 11:28:24 +00:00
* The dynamic portion of the hook name, `$type`, refers to the type
2014-01-06 05:48:12 +00:00
* of media uploaded.
*
* @since 3.0.0
*
* @param string $upload_iframe_src The upload iframe source URL by type.
*/
$upload_iframe_src = apply_filters( $type . '_upload_iframe_src', $upload_iframe_src );
2010-11-22 17:17:26 +00:00
return add_query_arg('TB_iframe', true, $upload_iframe_src);
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @return mixed void|object WP_Error on failure
2008-10-02 01:03:26 +00:00
*/
2008-02-26 19:30:10 +00:00
function media_upload_form_handler() {
check_admin_referer('media-form');
2008-01-25 19:21:11 +00:00
2009-06-25 06:09:22 +00:00
$errors = null;
2009-05-30 09:55:32 +00:00
2009-01-21 03:45:57 +00:00
if ( isset($_POST['send']) ) {
$keys = array_keys($_POST['send']);
$send_id = (int) array_shift($keys);
}
2008-02-16 21:54:47 +00:00
if ( !empty($_POST['attachments']) ) foreach ( $_POST['attachments'] as $attachment_id => $attachment ) {
$post = $_post = get_post($attachment_id, ARRAY_A);
2011-06-28 21:44:56 +00:00
2013-07-08 20:05:42 +00:00
if ( !current_user_can( 'edit_post', $attachment_id ) )
2011-06-28 21:44:56 +00:00
continue;
2008-02-16 21:54:47 +00:00
if ( isset($attachment['post_content']) )
2008-01-25 19:21:11 +00:00
$post['post_content'] = $attachment['post_content'];
2008-02-16 21:54:47 +00:00
if ( isset($attachment['post_title']) )
2008-01-25 19:21:11 +00:00
$post['post_title'] = $attachment['post_title'];
2008-02-16 21:54:47 +00:00
if ( isset($attachment['post_excerpt']) )
$post['post_excerpt'] = $attachment['post_excerpt'];
2008-05-21 18:29:46 +00:00
if ( isset($attachment['menu_order']) )
$post['menu_order'] = $attachment['menu_order'];
2009-01-21 03:45:57 +00:00
if ( isset($send_id) && $attachment_id == $send_id ) {
if ( isset($attachment['post_parent']) )
$post['post_parent'] = $attachment['post_parent'];
}
2008-02-16 21:54:47 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter the attachment fields to be saved.
*
* @since 2.5.0
*
* @see wp_get_attachment_metadata()
*
* @param WP_Post $post The WP_Post object.
* @param array $attachment An array of attachment metadata.
*/
$post = apply_filters( 'attachment_fields_to_save', $post, $attachment );
2008-01-25 19:21:11 +00:00
2010-02-21 11:21:32 +00:00
if ( isset($attachment['image_alt']) ) {
2013-03-01 17:58:43 +00:00
$image_alt = wp_unslash( $attachment['image_alt'] );
if ( $image_alt != get_post_meta($attachment_id, '_wp_attachment_image_alt', true) ) {
$image_alt = wp_strip_all_tags( $image_alt, true );
2014-07-17 09:14:16 +00:00
// Update_meta expects slashed.
2013-03-01 17:58:43 +00:00
update_post_meta( $attachment_id, '_wp_attachment_image_alt', wp_slash( $image_alt ) );
2009-10-19 05:09:41 +00:00
}
}
2008-02-16 21:54:47 +00:00
if ( isset($post['errors']) ) {
$errors[$attachment_id] = $post['errors'];
unset($post['errors']);
2008-01-25 19:21:11 +00:00
}
2008-02-16 21:54:47 +00:00
if ( $post != $_post )
wp_update_post($post);
2008-01-25 19:21:11 +00:00
2009-10-19 05:09:41 +00:00
foreach ( get_attachment_taxonomies($post) as $t ) {
2008-02-16 21:54:47 +00:00
if ( isset($attachment[$t]) )
wp_set_object_terms($attachment_id, array_map('trim', preg_split('/,+/', $attachment[$t])), $t, false);
2009-10-19 05:09:41 +00:00
}
2008-02-16 21:54:47 +00:00
}
2008-01-25 19:21:11 +00:00
2008-11-26 02:27:37 +00:00
if ( isset($_POST['insert-gallery']) || isset($_POST['update-gallery']) ) { ?>
<script type="text/javascript">
/* <![CDATA[ */
var win = window.dialogArguments || opener || parent || top;
win.tb_remove();
/* ]]> */
</script>
<?php
exit;
}
2008-02-16 21:54:47 +00:00
2009-01-21 03:45:57 +00:00
if ( isset($send_id) ) {
2013-03-01 17:00:25 +00:00
$attachment = wp_unslash( $_POST['attachments'][$send_id] );
2009-05-26 22:33:02 +00:00
2012-04-05 00:20:28 +00:00
$html = isset( $attachment['post_title'] ) ? $attachment['post_title'] : '';
2008-03-21 23:21:27 +00:00
if ( !empty($attachment['url']) ) {
2010-02-22 16:54:51 +00:00
$rel = '';
2010-03-29 09:57:34 +00:00
if ( strpos($attachment['url'], 'attachment_id') || get_attachment_link($send_id) == $attachment['url'] )
$rel = " rel='attachment wp-att-" . esc_attr($send_id) . "'";
2008-03-21 23:21:27 +00:00
$html = "<a href='{$attachment['url']}'$rel>$html</a>";
}
2009-05-26 22:33:02 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter the HTML markup for a media item sent to the editor.
*
* @since 2.5.0
*
* @see wp_get_attachment_metadata()
*
* @param string $html HTML markup for a media item sent to the editor.
* @param int $send_id The first key from the $_POST['send'] data.
* @param array $attachment Array of attachment metadata.
*/
$html = apply_filters( 'media_send_to_editor', $html, $send_id, $attachment );
2008-02-16 21:54:47 +00:00
return media_send_to_editor($html);
2008-01-25 19:21:11 +00:00
}
2008-02-16 21:54:47 +00:00
2009-05-08 20:45:04 +00:00
return $errors;
2008-02-26 19:30:10 +00:00
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-11-03 07:09:23 +00:00
* @return null|string
2008-10-02 01:03:26 +00:00
*/
2011-10-05 22:36:03 +00:00
function wp_media_upload_handler() {
2008-08-08 17:05:10 +00:00
$errors = array();
$id = 0;
2008-03-26 21:22:19 +00:00
if ( isset($_POST['html-upload']) && !empty($_FILES) ) {
2011-03-28 21:30:59 +00:00
check_admin_referer('media-form');
2008-02-28 21:29:51 +00:00
// Upload File button was clicked
$id = media_handle_upload('async-upload', $_REQUEST['post_id']);
unset($_FILES);
if ( is_wp_error($id) ) {
$errors['upload_error'] = $id;
$id = false;
}
}
if ( !empty($_POST['insertonlybutton']) ) {
2011-10-18 19:32:40 +00:00
$src = $_POST['src'];
2009-12-01 09:22:48 +00:00
if ( !empty($src) && !strpos($src, '://') )
$src = "http://$src";
2011-09-30 06:22:29 +00:00
if ( isset( $_POST['media_type'] ) && 'image' != $_POST['media_type'] ) {
2013-03-01 17:00:25 +00:00
$title = esc_html( wp_unslash( $_POST['title'] ) );
2011-10-18 19:32:40 +00:00
if ( empty( $title ) )
$title = esc_html( basename( $src ) );
2011-09-30 06:22:29 +00:00
2011-10-18 19:32:40 +00:00
if ( $title && $src )
2011-11-17 04:41:51 +00:00
$html = "<a href='" . esc_url($src) . "'>$title</a>";
2011-09-30 06:22:29 +00:00
$type = 'file';
2011-10-18 19:32:40 +00:00
if ( ( $ext = preg_replace( '/^.+?\.([^.]+)$/', '$1', $src ) ) && ( $ext_type = wp_ext2type( $ext ) )
2011-09-30 06:22:29 +00:00
&& ( 'audio' == $ext_type || 'video' == $ext_type ) )
$type = $ext_type;
2014-01-06 05:48:12 +00:00
/**
* Filter the URL sent to the editor for a specific media type.
*
2014-11-30 11:28:24 +00:00
* The dynamic portion of the hook name, `$type`, refers to the type
2014-01-06 05:48:12 +00:00
* of media being sent.
*
* @since 3.3.0
*
* @param string $html HTML markup sent to the editor.
* @param string $src Media source URL.
* @param string $title Media title.
*/
2011-09-30 06:22:29 +00:00
$html = apply_filters( $type . '_send_to_editor_url', $html, esc_url_raw( $src ), $title );
} else {
$align = '';
2013-03-01 17:00:25 +00:00
$alt = esc_attr( wp_unslash( $_POST['alt'] ) );
2011-10-18 19:32:40 +00:00
if ( isset($_POST['align']) ) {
2013-03-01 17:00:25 +00:00
$align = esc_attr( wp_unslash( $_POST['align'] ) );
2011-09-30 06:22:29 +00:00
$class = " class='align$align'";
}
if ( !empty($src) )
$html = "<img src='" . esc_url($src) . "' alt='$alt'$class />";
2014-01-06 05:48:12 +00:00
/**
* Filter the image URL sent to the editor.
*
* @since 2.8.0
*
* @param string $html HTML markup sent to the editor for an image.
* @param string $src Image source URL.
* @param string $alt Image alternate, or alt, text.
* @param string $align The image alignment. Default 'alignnone'. Possible values include
* 'alignleft', 'aligncenter', 'alignright', 'alignnone'.
*/
2011-09-30 06:22:29 +00:00
$html = apply_filters( 'image_send_to_editor_url', $html, esc_url_raw( $src ), $alt, $align );
2008-02-28 21:29:51 +00:00
}
2009-10-24 11:43:42 +00:00
2008-02-28 21:29:51 +00:00
return media_send_to_editor($html);
}
2014-06-27 21:32:16 +00:00
if ( isset( $_POST['save'] ) ) {
$errors['upload_notice'] = __('Saved.');
return media_upload_gallery();
} elseif ( ! empty( $_POST ) ) {
2008-02-26 19:30:10 +00:00
$return = media_upload_form_handler();
2008-02-28 21:29:51 +00:00
2008-02-26 19:30:10 +00:00
if ( is_string($return) )
return $return;
if ( is_array($return) )
$errors = $return;
}
2011-09-30 06:22:29 +00:00
if ( isset($_GET['tab']) && $_GET['tab'] == 'type_url' ) {
$type = 'image';
if ( isset( $_GET['type'] ) && in_array( $_GET['type'], array( 'video', 'audio', 'file' ) ) )
$type = $_GET['type'];
return wp_iframe( 'media_upload_type_url_form', $type, $errors, $id );
}
2008-03-26 21:22:19 +00:00
2012-04-12 00:16:37 +00:00
return wp_iframe( 'media_upload_type_form', 'image', $errors, $id );
2008-01-25 19:21:11 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2010-12-23 15:41:05 +00:00
* Download an image from the specified URL and attach it to a post.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.6.0
2008-10-02 01:03:26 +00:00
*
2010-12-23 15:41:05 +00:00
* @param string $file The URL of the image to download
* @param int $post_id The post ID the media is to be associated with
* @param string $desc Optional. Description of the image
* @return string|WP_Error Populated HTML img tag on success
2008-10-02 01:03:26 +00:00
*/
2014-05-23 21:33:14 +00:00
function media_sideload_image( $file, $post_id, $desc = null ) {
if ( ! empty( $file ) ) {
2014-07-17 09:14:16 +00:00
// Set variables for storage, fix file filename for query strings.
2012-07-05 20:51:55 +00:00
preg_match( '/[^\?]+\.(jpe?g|jpe|gif|png)\b/i', $file, $matches );
2014-07-17 22:01:14 +00:00
$file_array = array();
2014-05-23 21:33:14 +00:00
$file_array['name'] = basename( $matches[0] );
2014-07-17 09:14:16 +00:00
// Download file to temp location.
2014-05-23 21:33:14 +00:00
$file_array['tmp_name'] = download_url( $file );
2008-07-10 03:49:52 +00:00
2014-05-23 21:33:14 +00:00
// If error storing temporarily, return the error.
if ( is_wp_error( $file_array['tmp_name'] ) ) {
return $file_array['tmp_name'];
2008-09-22 22:04:10 +00:00
}
2009-09-24 01:54:07 +00:00
2014-07-17 09:14:16 +00:00
// Do the validation and storage stuff.
2010-12-23 15:41:05 +00:00
$id = media_handle_sideload( $file_array, $post_id, $desc );
2014-07-17 09:14:16 +00:00
// If error storing permanently, unlink.
2014-05-23 21:33:14 +00:00
if ( is_wp_error( $id ) ) {
@unlink( $file_array['tmp_name'] );
2008-06-23 16:00:12 +00:00
return $id;
}
2010-12-23 15:41:05 +00:00
$src = wp_get_attachment_url( $id );
2008-06-23 16:00:12 +00:00
}
2009-09-24 01:54:07 +00:00
2014-07-17 09:14:16 +00:00
// Finally check to make sure the file has been saved, then return the HTML.
2014-05-23 21:33:14 +00:00
if ( ! empty( $src ) ) {
$alt = isset( $desc ) ? esc_attr( $desc ) : '';
2008-06-23 16:00:12 +00:00
$html = "<img src='$src' alt='$alt' />";
return $html;
}
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-11-03 06:17:22 +00:00
* @return string|null
2008-10-02 01:03:26 +00:00
*/
2008-02-28 21:29:51 +00:00
function media_upload_gallery() {
2008-08-08 17:05:10 +00:00
$errors = array();
2008-02-28 21:29:51 +00:00
if ( !empty($_POST) ) {
$return = media_upload_form_handler();
2008-03-02 20:17:30 +00:00
2008-02-28 21:29:51 +00:00
if ( is_string($return) )
return $return;
if ( is_array($return) )
$errors = $return;
}
2008-05-21 18:29:46 +00:00
wp_enqueue_script('admin-gallery');
2008-02-28 21:29:51 +00:00
return wp_iframe( 'media_upload_gallery_form', $errors );
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-11-03 06:17:22 +00:00
* @return string|null
2008-10-02 01:03:26 +00:00
*/
2008-02-28 21:29:51 +00:00
function media_upload_library() {
2008-08-08 17:05:10 +00:00
$errors = array();
2008-02-28 21:29:51 +00:00
if ( !empty($_POST) ) {
$return = media_upload_form_handler();
2008-03-02 20:17:30 +00:00
2008-02-28 21:29:51 +00:00
if ( is_string($return) )
return $return;
if ( is_array($return) )
$errors = $return;
}
return wp_iframe( 'media_upload_library_form', $errors );
2008-01-25 19:21:11 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2008-10-13 02:48:45 +00:00
* Retrieve HTML for the image alignment radio buttons with the specified one checked.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.7.0
2008-10-02 01:03:26 +00:00
*
2014-12-01 01:00:22 +00:00
* @param WP_Post $post
2012-09-16 18:31:42 +00:00
* @param string $checked
* @return string
2008-10-02 01:03:26 +00:00
*/
2009-05-07 17:28:51 +00:00
function image_align_input_fields( $post, $checked = '' ) {
2008-12-09 18:03:31 +00:00
2009-11-16 01:37:30 +00:00
if ( empty($checked) )
$checked = get_user_setting('align', 'none');
2009-03-13 03:53:39 +00:00
$alignments = array('none' => __('None'), 'left' => __('Left'), 'center' => __('Center'), 'right' => __('Right'));
2009-05-07 17:28:51 +00:00
if ( !array_key_exists( (string) $checked, $alignments ) )
2008-08-15 15:40:35 +00:00
$checked = 'none';
2008-12-09 18:03:31 +00:00
2008-08-15 15:40:35 +00:00
$out = array();
2009-11-16 01:37:30 +00:00
foreach ( $alignments as $name => $label ) {
2009-05-05 19:43:53 +00:00
$name = esc_attr($name);
2008-08-22 20:50:54 +00:00
$out[] = "<input type='radio' name='attachments[{$post->ID}][align]' id='image-align-{$name}-{$post->ID}' value='$name'".
2014-03-19 22:13:14 +00:00
( $checked == $name ? " checked='checked'" : "" ) .
2009-11-16 01:37:30 +00:00
" /><label for='image-align-{$name}-{$post->ID}' class='align image-align-{$name}-label'>$label</label>";
2008-08-15 15:40:35 +00:00
}
return join("\n", $out);
}
2008-10-02 01:03:26 +00:00
/**
2008-10-13 02:48:45 +00:00
* Retrieve HTML for the size radio buttons with the specified one checked.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.7.0
2008-10-02 01:03:26 +00:00
*
2014-12-01 01:00:22 +00:00
* @param WP_Post $post
2012-09-16 18:31:42 +00:00
* @param bool|string $check
* @return array
2008-10-02 01:03:26 +00:00
*/
2009-11-16 01:37:30 +00:00
function image_size_input_fields( $post, $check = '' ) {
2008-12-09 18:03:31 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter the names and labels of the default image sizes.
*
* @since 3.3.0
*
* @param array $size_names Array of image sizes and their names. Default values
* include 'Thumbnail', 'Medium', 'Large', 'Full Size'.
*/
$size_names = apply_filters( 'image_size_names_choose', array(
'thumbnail' => __( 'Thumbnail' ),
'medium' => __( 'Medium' ),
'large' => __( 'Large' ),
'full' => __( 'Full Size' )
) );
2008-12-07 20:35:50 +00:00
2009-11-16 01:37:30 +00:00
if ( empty($check) )
$check = get_user_setting('imgsize', 'medium');
foreach ( $size_names as $size => $label ) {
2008-08-11 03:54:26 +00:00
$downsize = image_downsize($post->ID, $size);
2009-11-16 01:37:30 +00:00
$checked = '';
2008-10-13 02:48:45 +00:00
2014-07-17 09:14:16 +00:00
// Is this size selectable?
2008-08-11 03:54:26 +00:00
$enabled = ( $downsize[3] || 'full' == $size );
$css_id = "image-size-{$size}-{$post->ID}";
2014-07-17 09:14:16 +00:00
// If this size is the default but that's not available, don't select it.
2009-11-16 01:37:30 +00:00
if ( $size == $check ) {
if ( $enabled )
$checked = " checked='checked'";
else
$check = '';
} elseif ( !$check && $enabled && 'thumbnail' != $size ) {
2014-07-17 09:14:16 +00:00
/*
* If $check is not enabled, default to the first available size
* that's bigger than a thumbnail.
*/
2009-11-16 01:37:30 +00:00
$check = $size;
$checked = " checked='checked'";
}
2008-12-09 18:03:31 +00:00
2010-03-11 17:12:23 +00:00
$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 />";
2008-12-09 18:03:31 +00:00
2009-11-16 01:37:30 +00:00
$html .= "<label for='{$css_id}'>$label</label>";
2014-07-17 09:14:16 +00:00
// Only show the dimensions if that choice is available.
2008-08-11 03:54:26 +00:00
if ( $enabled )
2010-01-21 21:37:43 +00:00
$html .= " <label for='{$css_id}' class='help'>" . sprintf( "(%d × %d)", $downsize[1], $downsize[2] ). "</label>";
2008-12-09 18:03:31 +00:00
2008-08-11 03:54:26 +00:00
$html .= '</div>';
2008-12-09 18:03:31 +00:00
2008-08-11 03:54:26 +00:00
$out[] = $html;
}
2008-12-09 18:03:31 +00:00
2008-08-11 03:54:26 +00:00
return array(
'label' => __('Size'),
'input' => 'html',
'html' => join("\n", $out),
);
}
2008-10-02 01:03:26 +00:00
/**
2008-10-13 02:48:45 +00:00
* Retrieve HTML for the Link URL buttons with the default link type as specified.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.7.0
2008-10-02 01:03:26 +00:00
*
2014-12-01 01:00:22 +00:00
* @param WP_Post $post
2012-09-16 18:31:42 +00:00
* @param string $url_type
* @return string
2008-10-02 01:03:26 +00:00
*/
2009-11-16 01:37:30 +00:00
function image_link_input_fields($post, $url_type = '') {
2008-08-15 15:40:35 +00:00
$file = wp_get_attachment_url($post->ID);
$link = get_attachment_link($post->ID);
2009-11-16 01:37:30 +00:00
if ( empty($url_type) )
$url_type = get_user_setting('urlbutton', 'post');
2008-08-15 15:40:35 +00:00
$url = '';
if ( $url_type == 'file' )
$url = $file;
elseif ( $url_type == 'post' )
$url = $link;
2008-12-09 18:03:31 +00:00
2009-11-16 01:37:30 +00:00
return "
2009-11-16 07:16:34 +00:00
<input type='text' class='text urlfield' name='attachments[$post->ID][url]' value='" . esc_attr($url) . "' /><br />
2012-02-24 01:58:18 +00:00
<button type='button' class='button urlnone' data-link-url=''>" . __('None') . "</button>
<button type='button' class='button urlfile' data-link-url='" . esc_attr($file) . "'>" . __('File URL') . "</button>
<button type='button' class='button urlpost' data-link-url='" . esc_attr($link) . "'>" . __('Attachment Post URL') . "</button>
2008-11-13 03:07:39 +00:00
";
2008-08-15 15:40:35 +00:00
}
2012-02-24 01:58:18 +00:00
function wp_caption_input_textarea($edit_post) {
2014-07-17 09:14:16 +00:00
// Post data is already escaped.
2012-02-24 01:58:18 +00:00
$name = "attachments[{$edit_post->ID}][post_excerpt]";
2012-03-21 22:48:36 +00:00
return '<textarea name="' . $name . '" id="' . $name . '">' . $edit_post->post_excerpt . '</textarea>';
2012-02-24 01:58:18 +00:00
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param array $form_fields
* @param object $post
* @return array
2008-10-02 01:03:26 +00:00
*/
2008-02-16 21:54:47 +00:00
function image_attachment_fields_to_edit($form_fields, $post) {
return $form_fields;
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-05-30 17:38:14 +00:00
* @param array $form_fields An array of attachment form fields.
* @param WP_Post $post The WP_Post attachment object.
* @return array Filtered attachment form fields.
2008-10-02 01:03:26 +00:00
*/
2008-03-12 05:50:07 +00:00
function media_single_attachment_fields_to_edit( $form_fields, $post ) {
unset($form_fields['url'], $form_fields['align'], $form_fields['image-size']);
return $form_fields;
}
2010-12-01 19:24:38 +00:00
/**
* {@internal Missing Short Description}}
*
* @since 2.8.0
*
2014-05-30 17:38:14 +00:00
* @param array $form_fields An array of attachment form fields.
* @param WP_Post $post The WP_Post attachment object.
* @return array Filtered attachment form fields.
2010-12-01 19:24:38 +00:00
*/
2009-03-04 08:22:25 +00:00
function media_post_single_attachment_fields_to_edit( $form_fields, $post ) {
unset($form_fields['image_url']);
return $form_fields;
}
2008-10-02 01:03:26 +00:00
/**
2012-06-28 20:31:28 +00:00
* Filters input from media_upload_form_handler() and assigns a default
2012-09-21 22:52:54 +00:00
* post_title from the file name if none supplied.
2012-06-28 20:31:28 +00:00
*
2012-09-21 22:52:54 +00:00
* Illustrates the use of the attachment_fields_to_save filter
2012-06-28 20:31:28 +00:00
* which can be used to add default values to any field before saving to DB.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-11-03 07:09:23 +00:00
* @param array $post The WP_Post attachment object converted to an array.
* @param array $attachment An array of attachment metadata.
2014-05-30 17:38:14 +00:00
* @return array Filtered attachment post object.
2008-10-02 01:03:26 +00:00
*/
2013-09-06 14:10:09 +00:00
function image_attachment_fields_to_save( $post, $attachment ) {
if ( substr( $post['post_mime_type'], 0, 5 ) == 'image' ) {
if ( strlen( trim( $post['post_title'] ) ) == 0 ) {
$attachment_url = ( isset( $post['attachment_url'] ) ) ? $post['attachment_url'] : $post['guid'];
$post['post_title'] = preg_replace( '/\.\w+$/', '', wp_basename( $attachment_url ) );
$post['errors']['post_title']['errors'][] = __( 'Empty Title filled from filename.' );
2008-02-16 21:54:47 +00:00
}
}
return $post;
}
2013-09-06 14:10:09 +00:00
add_filter( 'attachment_fields_to_save', 'image_attachment_fields_to_save', 10, 2 );
2008-02-16 21:54:47 +00:00
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param string $html
* @param integer $attachment_id
* @param array $attachment
2014-11-03 07:09:23 +00:00
* @return string
2008-10-02 01:03:26 +00:00
*/
2008-02-16 21:54:47 +00:00
function image_media_send_to_editor($html, $attachment_id, $attachment) {
2012-08-23 20:01:10 +00:00
$post = get_post($attachment_id);
2008-02-16 21:54:47 +00:00
if ( substr($post->post_mime_type, 0, 5) == 'image' ) {
2008-02-28 21:29:51 +00:00
$url = $attachment['url'];
2009-10-19 05:09:41 +00:00
$align = !empty($attachment['align']) ? $attachment['align'] : 'none';
$size = !empty($attachment['image-size']) ? $attachment['image-size'] : 'medium';
$alt = !empty($attachment['image_alt']) ? $attachment['image_alt'] : '';
2008-03-28 03:53:05 +00:00
$rel = ( $url == get_attachment_link($attachment_id) );
2009-10-19 05:09:41 +00:00
return get_image_send_to_editor($attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, $rel, $size, $alt);
2008-02-16 21:54:47 +00:00
}
return $html;
}
add_filter('media_send_to_editor', 'image_media_send_to_editor', 10, 3);
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-11-03 07:09:23 +00:00
* @param WP_Post $post
2012-09-16 18:31:42 +00:00
* @param array $errors
* @return array
2008-10-02 01:03:26 +00:00
*/
2008-02-16 21:54:47 +00:00
function get_attachment_fields_to_edit($post, $errors = null) {
if ( is_int($post) )
2012-08-23 20:01:10 +00:00
$post = get_post($post);
2008-02-16 21:54:47 +00:00
if ( is_array($post) )
2012-08-23 20:01:10 +00:00
$post = new WP_Post( (object) $post );
2008-02-16 21:54:47 +00:00
2009-03-04 08:22:25 +00:00
$image_url = wp_get_attachment_url($post->ID);
2008-02-16 21:54:47 +00:00
$edit_post = sanitize_post($post, 'edit');
$form_fields = array(
'post_title' => array(
'label' => __('Title'),
2009-10-19 05:09:41 +00:00
'value' => $edit_post->post_title
2008-02-16 21:54:47 +00:00
),
2009-10-19 05:09:41 +00:00
'image_alt' => array(),
2008-02-16 21:54:47 +00:00
'post_excerpt' => array(
2012-05-18 02:50:05 +00:00
'label' => __('Caption'),
2012-02-24 01:58:18 +00:00
'input' => 'html',
'html' => wp_caption_input_textarea($edit_post)
2008-02-16 21:54:47 +00:00
),
'post_content' => array(
2008-03-24 02:57:19 +00:00
'label' => __('Description'),
2008-02-16 21:54:47 +00:00
'value' => $edit_post->post_content,
2009-10-19 05:09:41 +00:00
'input' => 'textarea'
2008-02-28 21:29:51 +00:00
),
'url' => array(
'label' => __('Link URL'),
'input' => 'html',
2008-08-15 15:40:35 +00:00
'html' => image_link_input_fields($post, get_option('image_default_link_type')),
2009-10-19 05:09:41 +00:00
'helps' => __('Enter a link URL or click above for presets.')
2008-02-16 21:54:47 +00:00
),
2008-09-17 00:40:10 +00:00
'menu_order' => array(
2008-05-21 18:29:46 +00:00
'label' => __('Order'),
'value' => $edit_post->menu_order
),
2009-03-04 08:22:25 +00:00
'image_url' => array(
'label' => __('File URL'),
'input' => 'html',
2009-11-16 07:16:34 +00:00
'html' => "<input type='text' class='text urlfield' readonly='readonly' name='attachments[$post->ID][url]' value='" . esc_attr($image_url) . "' /><br />",
2009-11-20 15:26:14 +00:00
'value' => wp_get_attachment_url($post->ID),
2009-10-19 05:09:41 +00:00
'helps' => __('Location of the uploaded file.')
2009-03-04 08:22:25 +00:00
)
2008-02-16 21:54:47 +00:00
);
foreach ( get_attachment_taxonomies($post) as $taxonomy ) {
$t = (array) get_taxonomy($taxonomy);
2012-07-09 04:56:50 +00:00
if ( ! $t['public'] || ! $t['show_ui'] )
2010-10-28 18:53:09 +00:00
continue;
2008-02-16 21:54:47 +00:00
if ( empty($t['label']) )
$t['label'] = $taxonomy;
if ( empty($t['args']) )
$t['args'] = array();
$terms = get_object_term_cache($post->ID, $taxonomy);
2012-11-07 20:00:51 +00:00
if ( false === $terms )
2008-02-16 21:54:47 +00:00
$terms = wp_get_object_terms($post->ID, $taxonomy, $t['args']);
$values = array();
foreach ( $terms as $term )
2012-09-18 17:34:01 +00:00
$values[] = $term->slug;
2008-02-16 21:54:47 +00:00
$t['value'] = join(', ', $values);
$form_fields[$taxonomy] = $t;
}
// Merge default fields with their errors, so any key passed with the error (e.g. 'error', 'helps', 'value') will replace the default
// The recursive merge is easily traversed with array casting: foreach( (array) $things as $thing )
$form_fields = array_merge_recursive($form_fields, (array) $errors);
2008-02-22 05:53:47 +00:00
2012-11-19 08:10:38 +00:00
// This was formerly in image_attachment_fields_to_edit().
if ( substr($post->post_mime_type, 0, 5) == 'image' ) {
$alt = get_post_meta($post->ID, '_wp_attachment_image_alt', true);
if ( empty($alt) )
$alt = '';
$form_fields['post_title']['required'] = true;
$form_fields['image_alt'] = array(
'value' => $alt,
'label' => __('Alternative Text'),
'helps' => __('Alt text for the image, e.g. “The Mona Lisa”')
);
$form_fields['align'] = array(
'label' => __('Alignment'),
'input' => 'html',
'html' => image_align_input_fields($post, get_option('image_default_align')),
);
$form_fields['image-size'] = image_size_input_fields( $post, get_option('image_default_size', 'medium') );
} else {
unset( $form_fields['image_alt'] );
}
2014-01-06 05:48:12 +00:00
/**
* Filter the attachment fields to edit.
*
* @since 2.5.0
*
* @param array $form_fields An array of attachment form fields.
* @param WP_Post $post The WP_Post attachment object.
*/
$form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
2008-02-16 21:54:47 +00:00
return $form_fields;
}
2008-10-02 01:03:26 +00:00
/**
2008-10-13 02:48:45 +00:00
* Retrieve HTML for media items of post gallery.
*
* The HTML markup retrieved will be created for the progress of SWF Upload
* component. Will also create link for showing and hiding the form to modify
* the image attachment.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2008-10-13 02:48:45 +00:00
* @param int $post_id Optional. Post ID.
* @param array $errors Errors for attachment, if any.
* @return string
2008-10-02 01:03:26 +00:00
*/
2008-02-28 21:29:51 +00:00
function get_media_items( $post_id, $errors ) {
2010-04-10 12:49:58 +00:00
$attachments = array();
2008-04-14 16:30:27 +00:00
if ( $post_id ) {
$post = get_post($post_id);
if ( $post && $post->post_type == 'attachment' )
2008-02-28 21:29:51 +00:00
$attachments = array($post->ID => $post);
else
2008-05-05 16:03:27 +00:00
$attachments = get_children( array( 'post_parent' => $post_id, 'post_type' => 'attachment', 'orderby' => 'menu_order ASC, ID', 'order' => 'DESC') );
2008-02-28 21:29:51 +00:00
} else {
if ( is_array($GLOBALS['wp_the_query']->posts) )
foreach ( $GLOBALS['wp_the_query']->posts as $attachment )
$attachments[$attachment->ID] = $attachment;
}
2008-11-14 23:01:16 +00:00
$output = '';
2009-08-19 08:35:24 +00:00
foreach ( (array) $attachments as $id => $attachment ) {
if ( $attachment->post_status == 'trash' )
continue;
2008-03-12 05:50:07 +00:00
if ( $item = get_media_item( $id, array( 'errors' => isset($errors[$id]) ? $errors[$id] : null) ) )
2011-11-13 18:37:30 +00:00
$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>";
2009-08-19 08:35:24 +00:00
}
2008-02-28 21:29:51 +00:00
return $output;
}
2008-10-02 01:03:26 +00:00
/**
2008-10-13 02:48:45 +00:00
* Retrieve HTML form for modifying the image attachment.
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2008-10-13 02:48:45 +00:00
* @param int $attachment_id Attachment ID for modification.
* @param string|array $args Optional. Override defaults.
* @return string HTML form for attachment.
2008-10-02 01:03:26 +00:00
*/
2008-03-12 05:50:07 +00:00
function get_media_item( $attachment_id, $args = null ) {
2009-10-26 17:56:28 +00:00
global $redir_tab;
2008-03-12 05:50:07 +00:00
2010-03-06 08:00:42 +00:00
if ( ( $attachment_id = intval( $attachment_id ) ) && $thumb_url = wp_get_attachment_image_src( $attachment_id, 'thumbnail', true ) )
2008-02-26 19:30:10 +00:00
$thumb_url = $thumb_url[0];
2008-02-24 04:34:40 +00:00
else
2010-03-06 08:00:42 +00:00
$thumb_url = false;
2008-01-25 19:21:11 +00:00
2010-04-18 09:09:45 +00:00
$post = get_post( $attachment_id );
2011-11-19 04:28:39 +00:00
$current_post_id = !empty( $_GET['post_id'] ) ? (int) $_GET['post_id'] : 0;
2010-11-17 18:47:34 +00:00
2014-05-15 02:45:15 +00:00
$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
);
2009-10-21 07:27:33 +00:00
$args = wp_parse_args( $args, $default_args );
2014-01-06 05:48:12 +00:00
/**
* Filter the arguments used to retrieve an image for the edit image form.
*
* @since 3.1.0
*
* @see get_media_item
*
* @param array $args An array of arguments.
*/
2014-05-15 02:45:15 +00:00
$r = apply_filters( 'get_media_item_args', $args );
2009-10-21 07:27:33 +00:00
2009-12-25 23:04:48 +00:00
$toggle_on = __( 'Show' );
$toggle_off = __( 'Hide' );
2008-01-25 19:21:11 +00:00
2012-11-05 14:33:56 +00:00
$filename = esc_html( wp_basename( $post->guid ) );
2009-12-25 23:04:48 +00:00
$title = esc_attr( $post->post_title );
2008-11-15 18:10:35 +00:00
2009-10-26 17:56:28 +00:00
$post_mime_types = get_post_mime_types();
2009-12-25 23:04:48 +00:00
$keys = array_keys( wp_match_mime_types( array_keys( $post_mime_types ), $post->post_mime_type ) );
$type = array_shift( $keys );
2009-10-26 17:56:28 +00:00
$type_html = "<input type='hidden' id='type-of-$attachment_id' value='" . esc_attr( $type ) . "' />";
2008-02-28 21:29:51 +00:00
2014-05-15 02:45:15 +00:00
$form_fields = get_attachment_fields_to_edit( $post, $r['errors'] );
2008-01-25 19:21:11 +00:00
2014-05-15 02:45:15 +00:00
if ( $r['toggle'] ) {
$class = empty( $r['errors'] ) ? 'startclosed' : 'startopen';
2008-03-12 05:50:07 +00:00
$toggle_links = "
<a class='toggle describe-toggle-on' href='#'>$toggle_on</a>
2009-10-19 16:36:21 +00:00
<a class='toggle describe-toggle-off' href='#'>$toggle_off</a>";
2008-03-12 05:50:07 +00:00
} else {
2011-11-12 00:52:26 +00:00
$class = '';
2008-03-12 05:50:07 +00:00
$toggle_links = '';
}
2008-03-26 21:00:21 +00:00
$display_title = ( !empty( $title ) ) ? $title : $filename; // $title shouldn't ever be empty, but just in case
2014-05-15 02:45:15 +00:00
$display_title = $r['show_title'] ? "<div class='filename new'><span class='title'>" . wp_html_excerpt( $display_title, 60, '…' ) . "</span></div>" : '';
2008-07-10 03:49:52 +00:00
2010-03-19 21:15:00 +00:00
$gallery = ( ( isset( $_REQUEST['tab'] ) && 'gallery' == $_REQUEST['tab'] ) || ( isset( $redir_tab ) && 'gallery' == $redir_tab ) );
2008-07-10 03:49:52 +00:00
$order = '';
foreach ( $form_fields as $key => $val ) {
if ( 'menu_order' == $key ) {
if ( $gallery )
2009-12-25 23:04:48 +00:00
$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>";
2008-07-10 03:49:52 +00:00
else
2009-12-25 23:04:48 +00:00
$order = "<input type='hidden' name='attachments[$attachment_id][menu_order]' value='" . esc_attr( $val['value'] ) . "' />";
2008-07-10 03:49:52 +00:00
2009-12-25 23:04:48 +00:00
unset( $form_fields['menu_order'] );
2008-07-10 03:49:52 +00:00
break;
}
}
2008-03-26 21:00:21 +00:00
2009-09-10 22:07:33 +00:00
$media_dims = '';
2009-12-25 23:04:48 +00:00
$meta = wp_get_attachment_metadata( $post->ID );
2013-03-29 20:51:35 +00:00
if ( isset( $meta['width'], $meta['height'] ) )
2009-12-25 23:04:48 +00:00
$media_dims .= "<span id='media-dims-$post->ID'>{$meta['width']} × {$meta['height']}</span> ";
2014-01-06 05:48:12 +00:00
/**
* Filter the media metadata.
*
* @since 2.5.0
*
* @param string $media_dims The HTML markup containing the media dimensions.
* @param WP_Post $post The WP_Post attachment object.
*/
2009-12-25 23:04:48 +00:00
$media_dims = apply_filters( 'media_meta', $media_dims, $post );
2009-09-10 22:07:33 +00:00
$image_edit_button = '';
2012-11-27 15:06:02 +00:00
if ( wp_attachment_is_image( $post->ID ) && wp_image_editor_supports( array( 'mime_type' => $post->post_mime_type ) ) ) {
2009-12-25 23:04:48 +00:00
$nonce = wp_create_nonce( "image_editor-$post->ID" );
2012-09-26 19:57:44 +00:00
$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>";
2009-09-10 22:07:33 +00:00
}
2009-12-25 22:22:21 +00:00
$attachment_url = get_permalink( $attachment_id );
2008-01-25 19:21:11 +00:00
$item = "
2009-10-19 16:36:21 +00:00
$type_html
2008-03-12 05:50:07 +00:00
$toggle_links
2008-07-10 03:49:52 +00:00
$order
2008-09-27 08:17:55 +00:00
$display_title
2008-03-12 05:50:07 +00:00
<table class='slidetoggle describe $class'>
2009-09-10 22:07:33 +00:00
<thead class='media-item-info' id='media-head-$post->ID'>
2014-01-24 19:06:15 +00:00
<tr>
2009-12-25 23:04:48 +00:00
<td class='A1B1' id='thumbnail-head-$post->ID'>
2011-11-12 00:52:26 +00:00
<p><a href='$attachment_url' target='_blank'><img class='thumbnail' src='$thumb_url' alt='' /></a></p>
2009-12-25 23:04:48 +00:00
<p>$image_edit_button</p>
2009-12-25 22:22:21 +00:00
</td>
2009-12-25 23:04:48 +00:00
<td>
<p><strong>" . __('File name:') . "</strong> $filename</p>
<p><strong>" . __('File type:') . "</strong> $post->post_mime_type</p>
<p><strong>" . __('Upload date:') . "</strong> " . mysql2date( get_option('date_format'), $post->post_date ). '</p>';
if ( !empty( $media_dims ) )
$item .= "<p><strong>" . __('Dimensions:') . "</strong> $media_dims</p>\n";
2010-01-15 22:11:12 +00:00
2010-05-14 01:54:21 +00:00
$item .= "</td></tr>\n";
2009-12-12 07:02:26 +00:00
$item .= "
2008-04-14 16:33:37 +00:00
</thead>
2009-09-10 22:07:33 +00:00
<tbody>
2009-09-24 01:54:07 +00:00
<tr><td colspan='2' class='imgedit-response' id='imgedit-response-$post->ID'></td></tr>
<tr><td style='display:none' colspan='2' class='image-editor' id='image-editor-$post->ID'></td></tr>\n";
2008-02-16 21:54:47 +00:00
$defaults = array(
'input' => 'text',
'required' => false,
'value' => '',
'extra_rows' => array(),
);
2014-05-15 02:45:15 +00:00
if ( $r['send'] ) {
$r['send'] = get_submit_button( __( 'Insert into Post' ), 'button', "send[$attachment_id]", false );
}
$delete = empty( $r['delete'] ) ? '' : $r['delete'];
2009-12-25 23:04:48 +00:00
if ( $delete && current_user_can( 'delete_post', $attachment_id ) ) {
2009-12-12 06:40:16 +00:00
if ( !EMPTY_TRASH_DAYS ) {
2012-08-14 18:39:15 +00:00
$delete = "<a href='" . wp_nonce_url( "post.php?action=delete&post=$attachment_id", 'delete-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete-permanently'>" . __( 'Delete Permanently' ) . '</a>';
2009-12-12 06:40:16 +00:00
} elseif ( !MEDIA_TRASH ) {
2009-12-25 23:04:48 +00:00
$delete = "<a href='#' class='del-link' onclick=\"document.getElementById('del_attachment_$attachment_id').style.display='block';return false;\">" . __( 'Delete' ) . "</a>
2012-03-28 20:28:34 +00:00
<div id='del_attachment_$attachment_id' class='del-attachment' style='display:none;'><p>" . sprintf( __( 'You are about to delete <strong>%s</strong>.' ), $filename ) . "</p>
2012-08-14 18:39:15 +00:00
<a href='" . wp_nonce_url( "post.php?action=delete&post=$attachment_id", 'delete-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='button'>" . __( 'Continue' ) . "</a>
2009-12-25 23:04:48 +00:00
<a href='#' class='button' onclick=\"this.parentNode.style.display='none';return false;\">" . __( 'Cancel' ) . "</a>
</div>";
2009-12-12 06:40:16 +00:00
} else {
2012-08-14 18:39:15 +00:00
$delete = "<a href='" . wp_nonce_url( "post.php?action=trash&post=$attachment_id", 'trash-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete'>" . __( 'Move to Trash' ) . "</a>
<a href='" . wp_nonce_url( "post.php?action=untrash&post=$attachment_id", 'untrash-post_' . $attachment_id ) . "' id='undo[$attachment_id]' class='undo hidden'>" . __( 'Undo' ) . "</a>";
2009-12-12 06:40:16 +00:00
}
2009-11-10 10:38:19 +00:00
} else {
$delete = '';
}
2009-11-20 19:46:10 +00:00
$thumbnail = '';
2009-12-10 07:04:01 +00:00
$calling_post_id = 0;
2014-05-15 02:45:15 +00:00
if ( isset( $_GET['post_id'] ) ) {
2010-05-18 22:08:49 +00:00
$calling_post_id = absint( $_GET['post_id'] );
2014-05-15 02:45:15 +00:00
} elseif ( isset( $_POST ) && count( $_POST ) ) {// Like for async-upload where $_GET['post_id'] isn't set
2009-12-10 07:04:01 +00:00
$calling_post_id = $post->post_parent;
2014-05-15 02:45:15 +00:00
}
2011-11-11 19:38:34 +00:00
if ( 'image' == $type && $calling_post_id && current_theme_supports( 'post-thumbnails', get_post_type( $calling_post_id ) )
&& post_type_supports( get_post_type( $calling_post_id ), 'thumbnail' ) && get_post_thumbnail_id( $calling_post_id ) != $attachment_id ) {
2010-05-18 22:08:49 +00:00
$ajax_nonce = wp_create_nonce( "set_post_thumbnail-$calling_post_id" );
$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>";
}
2009-10-21 07:27:33 +00:00
2014-05-15 02:45:15 +00:00
if ( ( $r['send'] || $thumbnail || $delete ) && !isset( $form_fields['buttons'] ) ) {
$form_fields['buttons'] = array( 'tr' => "\t\t<tr class='submit'><td></td><td class='savesend'>" . $r['send'] . " $thumbnail $delete</td></tr>\n" );
}
2008-02-16 21:54:47 +00:00
$hidden_fields = array();
foreach ( $form_fields as $id => $field ) {
2010-11-13 09:53:55 +00:00
if ( $id[0] == '_' )
2008-02-16 21:54:47 +00:00
continue;
2009-12-25 23:04:48 +00:00
if ( !empty( $field['tr'] ) ) {
2008-02-16 21:54:47 +00:00
$item .= $field['tr'];
continue;
}
2009-12-25 23:04:48 +00:00
$field = array_merge( $defaults, $field );
2008-02-16 21:54:47 +00:00
$name = "attachments[$attachment_id][$id]";
if ( $field['input'] == 'hidden' ) {
$hidden_fields[$name] = $field['value'];
continue;
}
2009-12-30 08:19:34 +00:00
$required = $field['required'] ? '<span class="alignright"><abbr title="required" class="required">*</abbr></span>' : '';
2008-05-04 21:28:12 +00:00
$aria_required = $field['required'] ? " aria-required='true' " : '';
2008-03-12 05:50:07 +00:00
$class = $id;
$class .= $field['required'] ? ' form-required' : '';
2014-01-24 19:06:15 +00:00
$item .= "\t\t<tr class='$class'>\n\t\t\t<th 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'>";
2009-12-25 23:04:48 +00:00
if ( !empty( $field[ $field['input'] ] ) )
$item .= $field[ $field['input'] ];
2008-02-16 21:54:47 +00:00
elseif ( $field['input'] == 'textarea' ) {
2012-02-24 01:58:18 +00:00
if ( 'post_content' == $id && user_can_richedit() ) {
2014-07-17 09:14:16 +00:00
// Sanitize_post() skips the post_content when user_can_richedit.
2012-02-24 01:58:18 +00:00
$field['value'] = htmlspecialchars( $field['value'], ENT_QUOTES );
2010-12-16 17:48:20 +00:00
}
2014-07-17 09:14:16 +00:00
// Post_excerpt is already escaped by sanitize_post() in get_attachment_fields_to_edit().
2011-04-07 08:30:08 +00:00
$item .= "<textarea id='$name' name='$name' $aria_required>" . $field['value'] . '</textarea>';
2008-02-16 21:54:47 +00:00
} else {
2009-12-25 23:04:48 +00:00
$item .= "<input type='text' class='text' id='$name' name='$name' value='" . esc_attr( $field['value'] ) . "' $aria_required />";
2008-02-16 21:54:47 +00:00
}
2009-12-25 23:04:48 +00:00
if ( !empty( $field['helps'] ) )
$item .= "<p class='help'>" . join( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>';
2008-02-16 21:54:47 +00:00
$item .= "</td>\n\t\t</tr>\n";
$extra_rows = array();
2009-12-25 23:04:48 +00:00
if ( !empty( $field['errors'] ) )
foreach ( array_unique( (array) $field['errors'] ) as $error )
2008-02-16 21:54:47 +00:00
$extra_rows['error'][] = $error;
2009-12-25 23:04:48 +00:00
if ( !empty( $field['extra_rows'] ) )
2008-02-16 21:54:47 +00:00
foreach ( $field['extra_rows'] as $class => $rows )
foreach ( (array) $rows as $html )
$extra_rows[$class][] = $html;
foreach ( $extra_rows as $class => $rows )
foreach ( $rows as $html )
2008-03-12 05:50:07 +00:00
$item .= "\t\t<tr><td></td><td class='$class'>$html</td></tr>\n";
2008-02-16 21:54:47 +00:00
}
2009-12-25 23:04:48 +00:00
if ( !empty( $form_fields['_final'] ) )
2008-03-12 05:50:07 +00:00
$item .= "\t\t<tr class='final'><td colspan='2'>{$form_fields['_final']}</td></tr>\n";
2008-04-14 16:33:37 +00:00
$item .= "\t</tbody>\n";
2008-02-16 21:54:47 +00:00
$item .= "\t</table>\n";
foreach ( $hidden_fields as $name => $value )
2009-05-05 19:43:53 +00:00
$item .= "\t<input type='hidden' name='$name' id='$name' value='" . esc_attr( $value ) . "' />\n";
2008-01-25 19:21:11 +00:00
2009-12-25 23:04:48 +00:00
if ( $post->post_parent < 1 && isset( $_REQUEST['post_id'] ) ) {
2008-12-05 06:21:42 +00:00
$parent = (int) $_REQUEST['post_id'];
$parent_name = "attachments[$attachment_id][post_parent]";
2009-12-25 23:04:48 +00:00
$item .= "\t<input type='hidden' name='$parent_name' id='$parent_name' value='$parent' />\n";
2008-12-05 06:21:42 +00:00
}
2008-01-25 19:21:11 +00:00
return $item;
}
2012-11-11 01:26:42 +00:00
function get_compat_media_markup( $attachment_id, $args = null ) {
$post = get_post( $attachment_id );
$default_args = array(
'errors' => null,
2012-12-06 00:41:06 +00:00
'in_modal' => false,
2012-11-11 01:26:42 +00:00
);
2012-12-05 10:29:24 +00:00
$user_can_edit = current_user_can( 'edit_post', $attachment_id );
2012-11-11 01:26:42 +00:00
$args = wp_parse_args( $args, $default_args );
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
2012-11-11 01:26:42 +00:00
$args = apply_filters( 'get_media_item_args', $args );
2012-11-19 07:20:47 +00:00
$form_fields = array();
2012-11-11 01:26:42 +00:00
2012-12-06 00:41:06 +00:00
if ( $args['in_modal'] ) {
2012-11-21 18:53:00 +00:00
foreach ( get_attachment_taxonomies($post) as $taxonomy ) {
$t = (array) get_taxonomy($taxonomy);
if ( ! $t['public'] || ! $t['show_ui'] )
continue;
if ( empty($t['label']) )
$t['label'] = $taxonomy;
if ( empty($t['args']) )
$t['args'] = array();
2012-11-19 07:20:47 +00:00
2012-11-21 18:53:00 +00:00
$terms = get_object_term_cache($post->ID, $taxonomy);
if ( false === $terms )
$terms = wp_get_object_terms($post->ID, $taxonomy, $t['args']);
2012-11-19 07:20:47 +00:00
2012-11-21 18:53:00 +00:00
$values = array();
2012-11-19 07:20:47 +00:00
2012-11-21 18:53:00 +00:00
foreach ( $terms as $term )
$values[] = $term->slug;
$t['value'] = join(', ', $values);
2012-12-05 10:29:24 +00:00
$t['taxonomy'] = true;
2012-11-19 07:20:47 +00:00
2012-11-21 18:53:00 +00:00
$form_fields[$taxonomy] = $t;
}
2012-11-19 07:20:47 +00:00
}
// Merge default fields with their errors, so any key passed with the error (e.g. 'error', 'helps', 'value') will replace the default
// The recursive merge is easily traversed with array casting: foreach( (array) $things as $thing )
$form_fields = array_merge_recursive($form_fields, (array) $args['errors'] );
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
2012-11-19 07:20:47 +00:00
$form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
unset( $form_fields['image-size'], $form_fields['align'], $form_fields['image_alt'],
2012-12-06 00:41:06 +00:00
$form_fields['post_title'], $form_fields['post_excerpt'], $form_fields['post_content'],
2012-11-19 07:20:47 +00:00
$form_fields['url'], $form_fields['menu_order'], $form_fields['image_url'] );
2012-11-11 01:26:42 +00:00
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
2012-11-11 01:26:42 +00:00
$media_meta = apply_filters( 'media_meta', '', $post );
$defaults = array(
2012-12-06 00:41:06 +00:00
'input' => 'text',
2014-03-19 22:13:14 +00:00
'required' => false,
'value' => '',
'extra_rows' => array(),
'show_in_edit' => true,
'show_in_modal' => true,
2012-11-11 01:26:42 +00:00
);
$hidden_fields = array();
$item = '';
foreach ( $form_fields as $id => $field ) {
if ( $id[0] == '_' )
continue;
$name = "attachments[$attachment_id][$id]";
2012-11-21 18:53:00 +00:00
$id_attr = "attachments-$attachment_id-$id";
2012-11-11 01:26:42 +00:00
if ( !empty( $field['tr'] ) ) {
$item .= $field['tr'];
continue;
}
$field = array_merge( $defaults, $field );
2012-12-06 00:41:06 +00:00
if ( ( ! $field['show_in_edit'] && ! $args['in_modal'] ) || ( ! $field['show_in_modal'] && $args['in_modal'] ) )
continue;
2012-11-11 01:26:42 +00:00
if ( $field['input'] == 'hidden' ) {
2012-11-21 18:53:00 +00:00
$hidden_fields[$name] = $field['value'];
2012-11-11 01:26:42 +00:00
continue;
}
2012-12-05 10:29:24 +00:00
$readonly = ! $user_can_edit && ! empty( $field['taxonomy'] ) ? " readonly='readonly' " : '';
2012-11-11 01:26:42 +00:00
$required = $field['required'] ? '<span class="alignright"><abbr title="required" class="required">*</abbr></span>' : '';
$aria_required = $field['required'] ? " aria-required='true' " : '';
2012-11-21 18:53:00 +00:00
$class = 'compat-field-' . $id;
2012-11-11 01:26:42 +00:00
$class .= $field['required'] ? ' form-required' : '';
$item .= "\t\t<tr class='$class'>";
2014-01-24 19:06:15 +00:00
$item .= "\t\t\t<th scope='row' class='label'><label for='$id_attr'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label>";
2012-11-11 01:26:42 +00:00
$item .= "</th>\n\t\t\t<td class='field'>";
if ( !empty( $field[ $field['input'] ] ) )
$item .= $field[ $field['input'] ];
elseif ( $field['input'] == 'textarea' ) {
if ( 'post_content' == $id && user_can_richedit() ) {
2014-07-17 09:14:16 +00:00
// sanitize_post() skips the post_content when user_can_richedit.
2012-11-11 01:26:42 +00:00
$field['value'] = htmlspecialchars( $field['value'], ENT_QUOTES );
}
2012-11-21 18:53:00 +00:00
$item .= "<textarea id='$id_attr' name='$name' $aria_required>" . $field['value'] . '</textarea>';
2012-11-11 01:26:42 +00:00
} else {
2012-12-05 10:29:24 +00:00
$item .= "<input type='text' class='text' id='$id_attr' name='$name' value='" . esc_attr( $field['value'] ) . "' $readonly $aria_required />";
2012-11-11 01:26:42 +00:00
}
if ( !empty( $field['helps'] ) )
$item .= "<p class='help'>" . join( "</p>\n<p class='help'>", array_unique( (array) $field['helps'] ) ) . '</p>';
$item .= "</td>\n\t\t</tr>\n";
$extra_rows = array();
if ( !empty( $field['errors'] ) )
foreach ( array_unique( (array) $field['errors'] ) as $error )
$extra_rows['error'][] = $error;
if ( !empty( $field['extra_rows'] ) )
foreach ( $field['extra_rows'] as $class => $rows )
foreach ( (array) $rows as $html )
$extra_rows[$class][] = $html;
foreach ( $extra_rows as $class => $rows )
foreach ( $rows as $html )
$item .= "\t\t<tr><td></td><td class='$class'>$html</td></tr>\n";
}
if ( !empty( $form_fields['_final'] ) )
$item .= "\t\t<tr class='final'><td colspan='2'>{$form_fields['_final']}</td></tr>\n";
if ( $item )
2012-11-21 18:53:00 +00:00
$item = '<table class="compat-attachment-fields">' . $item . '</table>';
2012-11-11 01:26:42 +00:00
2012-12-06 03:28:21 +00:00
foreach ( $hidden_fields as $hidden_field => $value ) {
$item .= '<input type="hidden" name="' . esc_attr( $hidden_field ) . '" value="' . esc_attr( $value ) . '" />' . "\n";
}
2013-01-05 03:50:28 +00:00
if ( $item )
$item = '<input type="hidden" name="attachments[' . $attachment_id . '][menu_order]" value="' . esc_attr( $post->menu_order ) . '" />' . $item;
2012-11-11 01:26:42 +00:00
return array(
'item' => $item,
'meta' => $media_meta,
);
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*/
2008-03-05 06:46:42 +00:00
function media_upload_header() {
2012-11-17 06:42:14 +00:00
$post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
echo '<script type="text/javascript">post_id = ' . $post_id . ";</script>\n";
2012-11-10 07:51:37 +00:00
if ( empty( $_GET['chromeless'] ) ) {
echo '<div id="media-upload-header">';
the_media_upload_tabs();
echo '</div>';
}
2008-02-26 19:30:10 +00:00
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2014-11-03 06:08:22 +00:00
* @param array $errors
2008-10-02 01:03:26 +00:00
*/
2008-02-26 19:30:10 +00:00
function media_upload_form( $errors = null ) {
2013-08-02 04:42:08 +00:00
global $type, $tab, $is_IE, $is_opera;
2011-11-18 08:43:16 +00:00
2012-04-12 00:16:37 +00:00
if ( ! _device_can_upload() ) {
2014-09-09 06:29:15 +00:00
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.'), 'https://apps.wordpress.org/' ) . '</p>';
2011-11-18 08:43:16 +00:00
return;
2012-04-12 00:16:37 +00:00
}
2008-02-28 21:29:51 +00:00
2011-07-29 08:59:35 +00:00
$upload_action_url = admin_url('async-upload.php');
2008-09-27 22:00:52 +00:00
$post_id = isset($_REQUEST['post_id']) ? intval($_REQUEST['post_id']) : 0;
2011-11-12 00:52:26 +00:00
$_type = isset($type) ? $type : '';
$_tab = isset($tab) ? $tab : '';
2008-01-25 19:21:11 +00:00
2014-05-07 18:25:14 +00:00
$max_upload_size = wp_max_upload_size();
if ( ! $max_upload_size ) {
$max_upload_size = 0;
2010-05-21 12:57:49 +00:00
}
2008-01-25 19:21:11 +00:00
?>
2011-07-29 19:21:21 +00:00
2011-10-31 21:38:28 +00:00
<div id="media-upload-notice"><?php
2011-07-29 19:21:21 +00:00
2011-10-31 21:38:28 +00:00
if (isset($errors['upload_notice']) )
echo $errors['upload_notice'];
?></div>
<div id="media-upload-error"><?php
if (isset($errors['upload_error']) && is_wp_error($errors['upload_error']))
echo $errors['upload_error']->get_error_message();
?></div>
2010-01-25 19:46:24 +00:00
<?php
2010-05-21 12:57:49 +00:00
if ( is_multisite() && !is_upload_space_available() ) {
2014-01-06 05:48:12 +00:00
/**
* Fires when an upload will exceed the defined upload space quota for a network site.
*
* @since 3.5.0
*/
2012-07-10 13:33:44 +00:00
do_action( 'upload_ui_over_quota' );
2010-05-21 12:57:49 +00:00
return;
}
2010-01-25 19:46:24 +00:00
2014-01-06 05:48:12 +00:00
/**
* Fires just before the legacy (pre-3.5.0) upload interface is loaded.
*
* @since 2.6.0
*/
do_action( 'pre-upload-ui' );
2008-04-14 16:32:04 +00:00
2010-11-19 00:04:04 +00:00
$post_params = array(
2014-05-07 18:25:14 +00:00
"post_id" => $post_id,
"_wpnonce" => wp_create_nonce('media-form'),
"type" => $_type,
"tab" => $_tab,
"short" => "1",
2010-11-19 00:04:04 +00:00
);
2011-07-29 19:21:21 +00:00
2014-01-06 05:48:12 +00:00
/**
* Filter the media upload post parameters.
*
* @since 3.1.0 As 'swfupload_post_params'
* @since 3.3.0
*
* @param array $post_params An array of media upload parameters used by Plupload.
*/
$post_params = apply_filters( 'upload_post_params', $post_params );
2011-07-29 19:21:21 +00:00
2011-09-15 05:30:58 +00:00
$plupload_init = array(
2014-03-23 23:45:19 +00:00
'runtimes' => 'html5,flash,silverlight,html4',
2014-02-27 20:01:16 +00:00
'browse_button' => 'plupload-browse-button',
'container' => 'plupload-upload-ui',
'drop_element' => 'drag-drop-area',
'file_data_name' => 'async-upload',
'url' => $upload_action_url,
2014-04-14 00:41:15 +00:00
'flash_swf_url' => includes_url( 'js/plupload/plupload.flash.swf' ),
'silverlight_xap_url' => includes_url( 'js/plupload/plupload.silverlight.xap' ),
2014-02-27 20:01:16 +00:00
'filters' => array(
'max_file_size' => $max_upload_size . 'b',
),
'multipart_params' => $post_params,
2011-09-15 05:30:58 +00:00
);
2011-07-29 19:21:21 +00:00
2014-09-29 00:14:18 +00:00
// Currently only iOS Safari supports multiple files uploading but iOS 7.x has a bug that prevents uploading of videos
2014-09-10 22:40:16 +00:00
// when enabled. See #29602.
2014-09-29 00:14:18 +00:00
if ( wp_is_mobile() && strpos( $_SERVER['HTTP_USER_AGENT'], 'OS 7_' ) !== false &&
strpos( $_SERVER['HTTP_USER_AGENT'], 'like Mac OS X' ) !== false ) {
2014-09-10 22:40:16 +00:00
$plupload_init['multi_selection'] = false;
}
2014-01-06 05:48:12 +00:00
/**
* Filter the default Plupload settings.
*
* @since 3.3.0
*
* @param array $plupload_init An array of default settings used by Plupload.
*/
2011-09-15 05:30:58 +00:00
$plupload_init = apply_filters( 'plupload_init', $plupload_init );
2010-11-19 00:04:04 +00:00
?>
2011-07-29 08:59:35 +00:00
2011-09-15 05:30:58 +00:00
<script type="text/javascript">
2011-11-30 21:05:22 +00:00
<?php
// Verify size is an int. If not return default value.
$large_size_h = absint( get_option('large_size_h') );
if( !$large_size_h )
$large_size_h = 1024;
$large_size_w = absint( get_option('large_size_w') );
if( !$large_size_w )
$large_size_w = 1024;
?>
var resize_height = <?php echo $large_size_h; ?>, resize_width = <?php echo $large_size_w; ?>,
2014-10-28 18:35:19 +00:00
wpUploaderInit = <?php echo wp_json_encode( $plupload_init ); ?>;
2008-01-25 19:21:11 +00:00
</script>
2011-10-12 22:24:53 +00:00
<div id="plupload-upload-ui" class="hide-if-no-js">
2014-01-06 05:48:12 +00:00
<?php
/**
* Fires before the upload interface loads.
*
* @since 2.6.0 As 'pre-flash-upload-ui'
* @since 3.3.0
*/
do_action( 'pre-plupload-upload-ui' ); ?>
2011-09-18 02:25:23 +00:00
<div id="drag-drop-area">
<div class="drag-drop-inside">
2011-11-05 18:09:38 +00:00
<p class="drag-drop-info"><?php _e('Drop files here'); ?></p>
<p><?php _ex('or', 'Uploader: Drop files here - or - Select Files'); ?></p>
2011-11-03 01:47:12 +00:00
<p class="drag-drop-buttons"><input id="plupload-browse-button" type="button" value="<?php esc_attr_e('Select Files'); ?>" class="button" /></p>
2011-09-18 02:25:23 +00:00
</div>
</div>
2014-01-06 05:48:12 +00:00
<?php
/**
* Fires after the upload interface loads.
*
* @since 2.6.0 As 'post-flash-upload-ui'
* @since 3.3.0
*/
do_action( 'post-plupload-upload-ui' ); ?>
2008-02-22 05:53:47 +00:00
</div>
2008-03-19 06:18:05 +00:00
2011-07-29 08:59:35 +00:00
<div id="html-upload-ui" class="hide-if-js">
2014-01-06 05:48:12 +00:00
<?php
/**
* Fires before the upload button in the media upload interface.
*
* @since 2.6.0
*/
do_action( 'pre-html-upload-ui' );
?>
2008-10-31 01:53:39 +00:00
<p id="async-upload-wrap">
2010-10-28 21:56:43 +00:00
<label class="screen-reader-text" for="async-upload"><?php _e('Upload'); ?></label>
<input type="file" name="async-upload" id="async-upload" />
<?php submit_button( __( 'Upload' ), 'button', 'html-upload', false ); ?>
<a href="#" onclick="try{top.tb_remove();}catch(e){}; return false;"><?php _e('Cancel'); ?></a>
2008-01-25 19:21:11 +00:00
</p>
2009-03-27 08:36:51 +00:00
<div class="clear"></div>
2014-01-06 05:48:12 +00:00
<?php
/**
* Fires after the upload button in the media upload interface.
*
* @since 2.6.0
*/
do_action( 'post-html-upload-ui' );
?>
2008-01-25 19:21:11 +00:00
</div>
2011-07-29 08:59:35 +00:00
2014-08-02 14:14:19 +00:00
<p class="max-upload-size"><?php printf( __( 'Maximum upload file size: %s.' ), esc_html( size_format( $max_upload_size ) ) ); ?></p>
2008-02-26 19:30:10 +00:00
<?php
2011-11-21 20:46:15 +00:00
2014-01-06 05:48:12 +00:00
/**
* Fires on the post upload UI screen.
*
* Legacy (pre-3.5.0) media workflow hook.
*
* @since 2.6.0
*/
do_action( 'post-upload-ui' );
2008-02-26 19:30:10 +00:00
}
2008-01-25 19:21:11 +00:00
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param string $type
* @param object $errors
* @param integer $id
2008-10-02 01:03:26 +00:00
*/
2008-02-28 21:29:51 +00:00
function media_upload_type_form($type = 'file', $errors = null, $id = null) {
2011-11-18 08:43:16 +00:00
2008-02-26 19:30:10 +00:00
media_upload_header();
2008-01-25 19:21:11 +00:00
2010-05-27 11:42:46 +00:00
$post_id = isset( $_REQUEST['post_id'] )? intval( $_REQUEST['post_id'] ) : 0;
2008-01-25 19:21:11 +00:00
2008-05-27 17:46:01 +00:00
$form_action_url = admin_url("media-upload.php?type=$type&tab=type&post_id=$post_id");
2014-01-06 05:48:12 +00:00
/**
* Filter the media upload form action URL.
*
* @since 2.6.0
*
* @param string $form_action_url The media upload form action URL.
* @param string $type The type of media. Default 'file'.
*/
$form_action_url = apply_filters( 'media_upload_form_url', $form_action_url, $type );
2011-11-11 19:40:23 +00:00
$form_class = 'media-upload-form type-form validate';
if ( get_user_setting('uploader') )
$form_class .= ' html-uploader';
2008-02-26 19:30:10 +00:00
?>
2013-03-18 14:01:25 +00:00
<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">
2010-10-28 21:56:43 +00:00
<?php submit_button( '', 'hidden', 'save', false ); ?>
2008-04-25 06:15:17 +00:00
<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
2008-02-26 19:30:10 +00:00
<?php wp_nonce_field('media-form'); ?>
2008-11-26 02:27:37 +00:00
2008-11-27 21:24:37 +00:00
<h3 class="media-title"><?php _e('Add media files from your computer'); ?></h3>
2008-11-26 02:27:37 +00:00
2008-02-26 19:30:10 +00:00
<?php media_upload_form( $errors ); ?>
2008-01-25 19:21:11 +00:00
2008-02-28 21:29:51 +00:00
<script type="text/javascript">
2009-05-17 12:29:58 +00:00
//<![CDATA[
2008-02-28 21:29:51 +00:00
jQuery(function($){
var preloaded = $(".media-item.preloaded");
if ( preloaded.length > 0 ) {
preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');});
}
2008-03-11 01:30:15 +00:00
updateMediaForm();
2008-02-28 21:29:51 +00:00
});
2009-05-17 12:29:58 +00:00
//]]>
2008-02-28 21:29:51 +00:00
</script>
2011-07-29 19:21:21 +00:00
<div id="media-items"><?php
2008-11-27 21:24:37 +00:00
if ( $id ) {
if ( !is_wp_error($id) ) {
2009-03-04 08:22:25 +00:00
add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2);
2008-11-27 21:24:37 +00:00
echo get_media_items( $id, $errors );
} else {
2011-07-29 19:21:21 +00:00
echo '<div id="media-upload-error">'.esc_html($id->get_error_message()).'</div></div>';
2008-11-26 02:27:37 +00:00
exit;
}
}
2011-07-29 19:21:21 +00:00
?></div>
2009-05-17 12:29:58 +00:00
<p class="savebutton ml-submit">
2010-10-28 21:56:43 +00:00
<?php submit_button( __( 'Save all changes' ), 'button', 'save', false ); ?>
2009-05-17 12:29:58 +00:00
</p>
2009-12-30 08:19:34 +00:00
</form>
2008-11-27 21:24:37 +00:00
<?php
}
2008-11-26 02:27:37 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.7.0
2008-11-26 02:27:37 +00:00
*
2012-09-16 18:31:42 +00:00
* @param string $type
* @param object $errors
* @param integer $id
2008-11-26 02:27:37 +00:00
*/
2011-09-30 06:22:29 +00:00
function media_upload_type_url_form($type = null, $errors = null, $id = null) {
if ( null === $type )
$type = 'image';
2008-11-26 02:27:37 +00:00
media_upload_header();
2012-11-17 06:42:14 +00:00
$post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
2008-11-26 02:27:37 +00:00
$form_action_url = admin_url("media-upload.php?type=$type&tab=type&post_id=$post_id");
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
$form_action_url = apply_filters( 'media_upload_form_url', $form_action_url, $type );
2011-11-11 19:40:23 +00:00
$form_class = 'media-upload-form type-form validate';
if ( get_user_setting('uploader') )
$form_class .= ' html-uploader';
2008-11-26 02:27:37 +00:00
?>
2008-01-25 19:21:11 +00:00
2013-03-18 14:01:25 +00:00
<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">
2008-11-26 02:27:37 +00:00
<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
<?php wp_nonce_field('media-form'); ?>
2011-10-05 21:07:04 +00:00
<h3 class="media-title"><?php _e('Insert media from another website'); ?></h3>
2008-02-28 21:29:51 +00:00
2008-07-10 03:49:52 +00:00
<script type="text/javascript">
//<![CDATA[
var addExtImage = {
width : '',
height : '',
align : 'alignnone',
insert : function() {
2009-10-19 05:09:41 +00:00
var t = this, html, f = document.forms[0], cls, title = '', alt = '', caption = '';
2008-07-10 03:49:52 +00:00
2009-10-24 11:43:42 +00:00
if ( '' == f.src.value || '' == t.width )
return false;
2008-07-10 03:49:52 +00:00
2009-10-19 05:09:41 +00:00
if ( f.alt.value )
alt = f.alt.value.replace(/'/g, ''').replace(/"/g, '"').replace(/</g, '<').replace(/>/g, '>');
2014-01-06 05:48:12 +00:00
<?php
/** This filter is documented in wp-admin/includes/media.php */
if ( ! apply_filters( 'disable_captions', '' ) ) {
?>
2012-02-24 01:58:18 +00:00
if ( f.caption.value ) {
2012-03-14 21:53:11 +00:00
caption = f.caption.value.replace(/\r\n|\r/g, '\n');
caption = caption.replace(/<[a-zA-Z0-9]+( [^<>]+)?>/g, function(a){
2012-05-02 01:14:52 +00:00
return a.replace(/[\r\n\t]+/, ' ');
2012-02-24 01:58:18 +00:00
});
2012-05-02 01:14:52 +00:00
caption = caption.replace(/\s*\n\s*/g, '<br />');
2012-02-24 01:58:18 +00:00
}
2008-07-11 15:59:14 +00:00
<?php } ?>
2008-07-10 03:49:52 +00:00
cls = caption ? '' : ' class="'+t.align+'"';
2012-11-06 23:23:03 +00:00
html = '<img alt="'+alt+'" src="'+f.src.value+'"'+cls+' width="'+t.width+'" height="'+t.height+'" />';
2008-07-10 03:49:52 +00:00
2011-11-14 19:35:32 +00:00
if ( f.url.value ) {
url = f.url.value.replace(/'/g, ''').replace(/"/g, '"').replace(/</g, '<').replace(/>/g, '>');
html = '<a href="'+url+'">'+html+'</a>';
}
2008-07-10 03:49:52 +00:00
if ( caption )
2012-05-02 01:14:52 +00:00
html = '[caption id="" align="'+t.align+'" width="'+t.width+'"]'+html+caption+'[/caption]';
2008-07-10 03:49:52 +00:00
var win = window.dialogArguments || opener || parent || top;
win.send_to_editor(html);
2009-10-24 11:43:42 +00:00
return false;
2008-07-10 03:49:52 +00:00
},
resetImageData : function() {
var t = addExtImage;
t.width = t.height = '';
document.getElementById('go_button').style.color = '#bbb';
if ( ! document.forms[0].src.value )
2009-10-24 11:43:42 +00:00
document.getElementById('status_img').innerHTML = '*';
2010-05-03 18:16:22 +00:00
else document.getElementById('status_img').innerHTML = '<img src="<?php echo esc_url( admin_url( 'images/no.png' ) ); ?>" alt="" />';
2008-07-10 03:49:52 +00:00
},
updateImageData : function() {
var t = addExtImage;
t.width = t.preloadImg.width;
t.height = t.preloadImg.height;
document.getElementById('go_button').style.color = '#333';
2010-05-03 18:16:22 +00:00
document.getElementById('status_img').innerHTML = '<img src="<?php echo esc_url( admin_url( 'images/yes.png' ) ); ?>" alt="" />';
2008-07-10 03:49:52 +00:00
},
getImageData : function() {
2011-10-18 19:32:40 +00:00
if ( jQuery('table.describe').hasClass('not-image') )
return;
2008-07-10 03:49:52 +00:00
var t = addExtImage, src = document.forms[0].src.value;
2011-10-18 19:32:40 +00:00
if ( ! src ) {
2008-07-10 03:49:52 +00:00
t.resetImageData();
return false;
}
2011-09-30 06:22:29 +00:00
2012-09-26 19:57:44 +00:00
document.getElementById('status_img').innerHTML = '<img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" width="16" />';
2008-07-10 03:49:52 +00:00
t.preloadImg = new Image();
t.preloadImg.onload = t.updateImageData;
t.preloadImg.onerror = t.resetImageData;
t.preloadImg.src = src;
}
}
2011-09-30 06:22:29 +00:00
jQuery(document).ready( function($) {
$('.media-types input').click( function() {
$('table.describe').toggleClass('not-image', $('#not-image').prop('checked') );
});
});
2008-07-10 03:49:52 +00:00
//]]>
</script>
2008-02-28 21:29:51 +00:00
<div id="media-items">
<div class="media-item media-blank">
2014-01-06 05:48:12 +00:00
<?php
/**
* Filter the insert media from URL form HTML.
*
* @since 3.3.0
*
* @param string $form_html The insert from URL form HTML.
*/
echo apply_filters( 'type_url_form_media', wp_media_insert_url_form( $type ) );
?>
2008-02-28 21:29:51 +00:00
</div>
</div>
2008-07-16 22:09:27 +00:00
</form>
2008-02-26 19:30:10 +00:00
<?php
}
2008-01-25 19:21:11 +00:00
2008-10-02 01:03:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Adds gallery form to upload iframe
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param array $errors
2008-10-02 01:03:26 +00:00
*/
2008-02-28 21:29:51 +00:00
function media_upload_gallery_form($errors) {
2009-09-01 20:44:17 +00:00
global $redir_tab, $type;
2008-07-10 03:49:52 +00:00
$redir_tab = 'gallery';
2008-03-05 06:46:42 +00:00
media_upload_header();
2008-01-25 19:21:11 +00:00
2008-02-26 19:30:10 +00:00
$post_id = intval($_REQUEST['post_id']);
2009-09-01 20:44:17 +00:00
$form_action_url = admin_url("media-upload.php?type=$type&tab=gallery&post_id=$post_id");
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
$form_action_url = apply_filters( 'media_upload_form_url', $form_action_url, $type );
2011-11-11 19:40:23 +00:00
$form_class = 'media-upload-form validate';
2011-12-01 04:51:35 +00:00
2011-11-11 19:40:23 +00:00
if ( get_user_setting('uploader') )
$form_class .= ' html-uploader';
2008-02-26 19:30:10 +00:00
?>
<script type="text/javascript">
jQuery(function($){
var preloaded = $(".media-item.preloaded");
if ( preloaded.length > 0 ) {
preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');});
updateMediaForm();
}
});
</script>
2009-03-16 13:05:09 +00:00
<div id="sort-buttons" class="hide-if-no-js">
2009-03-25 17:20:03 +00:00
<span>
<?php _e('All Tabs:'); ?>
2009-05-17 12:29:58 +00:00
<a href="#" id="showall"><?php _e('Show'); ?></a>
<a href="#" id="hideall" style="display:none;"><?php _e('Hide'); ?></a>
2009-03-25 17:20:03 +00:00
</span>
2009-03-18 02:43:45 +00:00
<?php _e('Sort Order:'); ?>
2009-04-20 18:18:39 +00:00
<a href="#" id="asc"><?php _e('Ascending'); ?></a> |
<a href="#" id="desc"><?php _e('Descending'); ?></a> |
2010-05-14 21:46:25 +00:00
<a href="#" id="clear"><?php _ex('Clear', 'verb'); ?></a>
2009-03-16 13:05:09 +00:00
</div>
2013-03-18 14:01:25 +00:00
<form enctype="multipart/form-data" method="post" action="<?php echo esc_url( $form_action_url ); ?>" class="<?php echo $form_class; ?>" id="gallery-form">
2008-02-26 19:30:10 +00:00
<?php wp_nonce_field('media-form'); ?>
<?php //media_upload_form( $errors ); ?>
2014-01-26 20:28:12 +00:00
<table class="widefat">
2008-07-10 03:49:52 +00:00
<thead><tr>
<th><?php _e('Media'); ?></th>
<th class="order-head"><?php _e('Order'); ?></th>
2009-10-07 22:18:09 +00:00
<th class="actions-head"><?php _e('Actions'); ?></th>
2008-07-10 03:49:52 +00:00
</tr></thead>
</table>
2008-02-26 19:30:10 +00:00
<div id="media-items">
2009-03-04 08:22:25 +00:00
<?php add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2); ?>
2008-02-26 19:30:10 +00:00
<?php echo get_media_items($post_id, $errors); ?>
</div>
2008-11-26 02:27:37 +00:00
2008-07-10 03:49:52 +00:00
<p class="ml-submit">
2010-10-28 21:56:43 +00:00
<?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false, array( 'id' => 'save-all', 'style' => 'display: none;' ) ); ?>
2008-04-25 06:15:17 +00:00
<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
2009-05-05 19:43:53 +00:00
<input type="hidden" name="type" value="<?php echo esc_attr( $GLOBALS['type'] ); ?>" />
<input type="hidden" name="tab" value="<?php echo esc_attr( $GLOBALS['tab'] ); ?>" />
2008-07-10 03:49:52 +00:00
</p>
2008-11-26 02:27:37 +00:00
<div id="gallery-settings" style="display:none;">
<div class="title"><?php _e('Gallery Settings'); ?></div>
<table id="basic" class="describe"><tbody>
<tr>
<th scope="row" class="label">
<label>
<span class="alignleft"><?php _e('Link thumbnails to:'); ?></span>
</label>
</th>
<td class="field">
<input type="radio" name="linkto" id="linkto-file" value="file" />
<label for="linkto-file" class="radio"><?php _e('Image File'); ?></label>
<input type="radio" checked="checked" name="linkto" id="linkto-post" value="post" />
<label for="linkto-post" class="radio"><?php _e('Attachment Page'); ?></label>
</td>
</tr>
<tr>
<th scope="row" class="label">
<label>
<span class="alignleft"><?php _e('Order images by:'); ?></span>
</label>
</th>
<td class="field">
<select id="orderby" name="orderby">
<option value="menu_order" selected="selected"><?php _e('Menu order'); ?></option>
2009-03-09 07:02:38 +00:00
<option value="title"><?php _e('Title'); ?></option>
2011-08-24 11:37:25 +00:00
<option value="post_date"><?php _e('Date/Time'); ?></option>
2009-03-09 07:02:38 +00:00
<option value="rand"><?php _e('Random'); ?></option>
2008-11-26 02:27:37 +00:00
</select>
</td>
</tr>
<tr>
<th scope="row" class="label">
<label>
<span class="alignleft"><?php _e('Order:'); ?></span>
</label>
</th>
<td class="field">
<input type="radio" checked="checked" name="order" id="order-asc" value="asc" />
<label for="order-asc" class="radio"><?php _e('Ascending'); ?></label>
<input type="radio" name="order" id="order-desc" value="desc" />
<label for="order-desc" class="radio"><?php _e('Descending'); ?></label>
</td>
</tr>
<tr>
<th scope="row" class="label">
<label>
<span class="alignleft"><?php _e('Gallery columns:'); ?></span>
</label>
</th>
<td class="field">
<select id="columns" name="columns">
2010-11-18 03:30:55 +00:00
<option value="1">1</option>
2010-01-21 21:37:43 +00:00
<option value="2">2</option>
<option value="3" selected="selected">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
2008-11-26 02:27:37 +00:00
</select>
</td>
</tr>
</tbody></table>
<p class="ml-submit">
2009-12-25 22:22:21 +00:00
<input type="button" class="button" style="display:none;" onMouseDown="wpgallery.update();" name="insert-gallery" id="insert-gallery" value="<?php esc_attr_e( 'Insert gallery' ); ?>" />
<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' ); ?>" />
2008-11-26 02:27:37 +00:00
</p>
</div>
2008-02-26 19:30:10 +00:00
</form>
2008-01-25 19:21:11 +00:00
<?php
}
2008-10-02 01:03:26 +00:00
/**
* {@internal Missing Short Description}}
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param array $errors
2008-10-02 01:03:26 +00:00
*/
2008-02-26 19:30:10 +00:00
function media_upload_library_form($errors) {
2008-02-28 21:29:51 +00:00
global $wpdb, $wp_query, $wp_locale, $type, $tab, $post_mime_types;
2008-02-27 08:31:10 +00:00
2008-03-05 06:46:42 +00:00
media_upload_header();
2008-02-27 08:31:10 +00:00
2012-11-17 06:42:14 +00:00
$post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
2008-02-27 08:31:10 +00:00
2009-09-01 20:44:17 +00:00
$form_action_url = admin_url("media-upload.php?type=$type&tab=library&post_id=$post_id");
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
$form_action_url = apply_filters( 'media_upload_form_url', $form_action_url, $type );
2011-11-11 19:40:23 +00:00
$form_class = 'media-upload-form validate';
if ( get_user_setting('uploader') )
$form_class .= ' html-uploader';
2008-02-27 08:31:10 +00:00
2014-03-03 16:21:16 +00:00
$q = $_GET;
$q['posts_per_page'] = 10;
2014-03-11 13:24:14 +00:00
$q['paged'] = isset( $q['paged'] ) ? intval( $q['paged'] ) : 0;
2014-03-03 16:21:16 +00:00
if ( $q['paged'] < 1 ) {
$q['paged'] = 1;
}
$q['offset'] = ( $q['paged'] - 1 ) * 10;
if ( $q['offset'] < 1 ) {
$q['offset'] = 0;
}
list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query( $q );
2008-02-27 08:31:10 +00:00
?>
<form id="filter" action="" method="get">
2009-05-05 19:43:53 +00:00
<input type="hidden" name="type" value="<?php echo esc_attr( $type ); ?>" />
<input type="hidden" name="tab" value="<?php echo esc_attr( $tab ); ?>" />
2008-04-25 06:15:17 +00:00
<input type="hidden" name="post_id" value="<?php echo (int) $post_id; ?>" />
2009-05-05 19:43:53 +00:00
<input type="hidden" name="post_mime_type" value="<?php echo isset( $_GET['post_mime_type'] ) ? esc_attr( $_GET['post_mime_type'] ) : ''; ?>" />
2012-06-06 16:00:08 +00:00
<input type="hidden" name="context" value="<?php echo isset( $_GET['context'] ) ? esc_attr( $_GET['context'] ) : ''; ?>" />
2008-02-27 08:31:10 +00:00
2008-09-05 23:19:08 +00:00
<p id="media-search" class="search-box">
2009-05-12 22:40:56 +00:00
<label class="screen-reader-text" for="media-search-input"><?php _e('Search Media');?>:</label>
2012-03-10 01:23:48 +00:00
<input type="search" id="media-search-input" name="s" value="<?php the_search_query(); ?>" />
2010-10-28 21:56:43 +00:00
<?php submit_button( __( 'Search Media' ), 'button', '', false ); ?>
2008-09-05 23:19:08 +00:00
</p>
2008-02-27 08:31:10 +00:00
<ul class="subsubsub">
<?php
$type_links = array();
$_num_posts = (array) wp_count_attachments();
$matches = wp_match_mime_types(array_keys($post_mime_types), array_keys($_num_posts));
2008-03-11 01:30:15 +00:00
foreach ( $matches as $_type => $reals )
2008-02-27 08:31:10 +00:00
foreach ( $reals as $real )
2009-04-22 12:24:45 +00:00
if ( isset($num_posts[$_type]) )
$num_posts[$_type] += $_num_posts[$real];
else
$num_posts[$_type] = $_num_posts[$real];
2008-03-17 20:09:55 +00:00
// If available type specified by media button clicked, filter by that type
if ( empty($_GET['post_mime_type']) && !empty($num_posts[$type]) ) {
$_GET['post_mime_type'] = $type;
list($post_mime_types, $avail_post_mime_types) = wp_edit_attachments_query();
}
if ( empty($_GET['post_mime_type']) || $_GET['post_mime_type'] == 'all' )
$class = ' class="current"';
2009-04-22 12:24:45 +00:00
else
$class = '';
2014-05-19 01:59:15 +00:00
$type_links[] = '<li><a href="' . esc_url(add_query_arg(array('post_mime_type'=>'all', 'paged'=>false, 'm'=>false))) . '"' . $class . '>' . __('All Types') . '</a>';
2008-02-27 08:31:10 +00:00
foreach ( $post_mime_types as $mime_type => $label ) {
$class = '';
if ( !wp_match_mime_types($mime_type, $avail_post_mime_types) )
continue;
2009-04-22 12:24:45 +00:00
if ( isset($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) )
2008-02-27 08:31:10 +00:00
$class = ' class="current"';
2014-05-19 01:59:15 +00:00
$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>';
2008-02-27 08:31:10 +00:00
}
2014-01-06 05:48:12 +00:00
/**
* Filter the media upload mime type list items.
*
2014-11-24 05:53:22 +00:00
* Returned values should begin with an `<li>` tag.
2014-01-06 05:48:12 +00:00
*
* @since 3.1.0
*
* @param array $type_links An array of list items containing mime type link HTML.
*/
2010-10-28 12:41:37 +00:00
echo implode(' | </li>', apply_filters( 'media_upload_mime_type_links', $type_links ) ) . '</li>';
2008-02-27 08:31:10 +00:00
unset($type_links);
?>
</ul>
<div class="tablenav">
<?php
$page_links = paginate_links( array(
'base' => add_query_arg( 'paged', '%#%' ),
'format' => '',
2008-11-27 00:28:24 +00:00
'prev_text' => __('«'),
'next_text' => __('»'),
2008-02-27 08:31:10 +00:00
'total' => ceil($wp_query->found_posts / 10),
2014-03-24 03:25:16 +00:00
'current' => $q['paged'],
2008-02-27 08:31:10 +00:00
));
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links</div>";
?>
2008-10-24 18:25:46 +00:00
<div class="alignleft actions">
2008-02-27 08:31:10 +00:00
<?php
$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";
$arc_result = $wpdb->get_results( $arc_query );
$month_count = count($arc_result);
2013-08-15 16:25:12 +00:00
$selected_month = isset( $_GET['m'] ) ? $_GET['m'] : 0;
2008-02-27 08:31:10 +00:00
if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
<select name='m'>
2014-03-19 22:13:14 +00:00
<option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option>
2008-02-27 08:31:10 +00:00
<?php
foreach ($arc_result as $arc_row) {
if ( $arc_row->yyear == 0 )
continue;
$arc_row->mmonth = zeroise( $arc_row->mmonth, 2 );
2008-02-28 21:29:51 +00:00
2013-08-15 16:25:12 +00:00
if ( $arc_row->yyear . $arc_row->mmonth == $selected_month )
2008-02-27 08:31:10 +00:00
$default = ' selected="selected"';
else
$default = '';
2008-02-28 21:29:51 +00:00
2009-05-05 19:43:53 +00:00
echo "<option$default value='" . esc_attr( $arc_row->yyear . $arc_row->mmonth ) . "'>";
2009-05-18 15:11:07 +00:00
echo esc_html( $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear" );
2008-02-27 08:31:10 +00:00
echo "</option>\n";
}
?>
</select>
<?php } ?>
2012-09-21 19:34:23 +00:00
<?php submit_button( __( 'Filter »' ), 'button', 'post-query-submit', false ); ?>
2008-02-27 08:31:10 +00:00
</div>
2008-03-14 23:58:31 +00:00
<br class="clear" />
2008-02-27 08:31:10 +00:00
</div>
</form>
2013-03-18 14:01:25 +00:00
<form enctype="multipart/form-data" method="post" action="<?php echo esc_url( $form_action_url ); ?>" class="<?php echo $form_class; ?>" id="library-form">
2008-02-28 21:29:51 +00:00
<?php wp_nonce_field('media-form'); ?>
<?php //media_upload_form( $errors ); ?>
2008-02-27 08:31:10 +00:00
<script type="text/javascript">
<!--
jQuery(function($){
var preloaded = $(".media-item.preloaded");
if ( preloaded.length > 0 ) {
preloaded.each(function(){prepareMediaItem({id:this.id.replace(/[^0-9]/g, '')},'');});
updateMediaForm();
}
});
-->
</script>
<div id="media-items">
2009-03-04 08:22:25 +00:00
<?php add_filter('attachment_fields_to_edit', 'media_post_single_attachment_fields_to_edit', 10, 2); ?>
2008-02-27 08:31:10 +00:00
<?php echo get_media_items(null, $errors); ?>
</div>
2008-04-30 20:21:09 +00:00
<p class="ml-submit">
2010-10-28 21:56:43 +00:00
<?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false ); ?>
2008-04-25 06:15:17 +00:00
<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
2008-04-30 20:21:09 +00:00
</p>
2008-02-27 08:31:10 +00:00
</form>
<?php
2008-02-26 19:30:10 +00:00
}
2008-10-02 01:03:26 +00:00
/**
2012-09-16 18:31:42 +00:00
* Creates the form for external url
2008-10-02 01:03:26 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.7.0
2008-10-02 01:03:26 +00:00
*
2012-09-16 18:31:42 +00:00
* @param string $default_view
* @return string the form html
2008-10-02 01:03:26 +00:00
*/
2011-10-05 22:36:03 +00:00
function wp_media_insert_url_form( $default_view = 'image' ) {
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
if ( ! apply_filters( 'disable_captions', '' ) ) {
2009-10-19 05:09:41 +00:00
$caption = '
2011-09-30 06:22:29 +00:00
<tr class="image-only">
2014-01-24 19:06:15 +00:00
<th scope="row" class="label">
2012-11-07 21:41:31 +00:00
<label for="caption"><span class="alignleft">' . __('Image Caption') . '</span></label>
2009-10-19 05:09:41 +00:00
</th>
2012-03-21 22:48:36 +00:00
<td class="field"><textarea id="caption" name="caption"></textarea></td>
2009-10-19 05:09:41 +00:00
</tr>
';
2008-07-16 21:36:17 +00:00
} else {
2009-10-19 05:09:41 +00:00
$caption = '';
2008-07-16 21:36:17 +00:00
}
2008-08-09 05:36:14 +00:00
2008-08-15 15:40:35 +00:00
$default_align = get_option('image_default_align');
if ( empty($default_align) )
$default_align = 'none';
2008-12-09 18:03:31 +00:00
2011-09-30 06:22:29 +00:00
if ( 'image' == $default_view ) {
$view = 'image-only';
$table_class = '';
} else {
$view = $table_class = 'not-image';
}
2008-07-16 21:36:17 +00:00
return '
2011-10-05 21:07:04 +00:00
<p class="media-types"><label><input type="radio" name="media_type" value="image" id="image-only"' . checked( 'image-only', $view, false ) . ' /> ' . __( 'Image' ) . '</label> <label><input type="radio" name="media_type" value="generic" id="not-image"' . checked( 'not-image', $view, false ) . ' /> ' . __( 'Audio, Video, or Other File' ) . '</label></p>
2011-09-30 06:22:29 +00:00
<table class="describe ' . $table_class . '"><tbody>
2008-07-10 03:49:52 +00:00
<tr>
2014-01-24 19:06:15 +00:00
<th scope="row" class="label" style="width:130px;">
2012-11-07 21:41:31 +00:00
<label for="src"><span class="alignleft">' . __('URL') . '</span></label>
2009-10-24 11:43:42 +00:00
<span class="alignright"><abbr id="status_img" title="required" class="required">*</abbr></span>
2008-07-10 03:49:52 +00:00
</th>
2008-07-16 22:09:27 +00:00
<td class="field"><input id="src" name="src" value="" type="text" aria-required="true" onblur="addExtImage.getImageData()" /></td>
2008-07-10 03:49:52 +00:00
</tr>
2008-02-28 21:29:51 +00:00
<tr>
2014-01-24 19:06:15 +00:00
<th scope="row" class="label">
2012-11-07 21:41:31 +00:00
<label for="title"><span class="alignleft">' . __('Title') . '</span></label>
2008-03-12 05:50:07 +00:00
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
</th>
2009-10-19 05:09:41 +00:00
<td class="field"><input id="title" name="title" value="" type="text" aria-required="true" /></td>
2008-02-28 21:29:51 +00:00
</tr>
2008-07-10 03:49:52 +00:00
2011-09-30 06:22:29 +00:00
<tr class="not-image"><td></td><td><p class="help">' . __('Link text, e.g. “Ransom Demands (PDF)”') . '</p></td></tr>
<tr class="image-only">
2014-01-24 19:06:15 +00:00
<th scope="row" class="label">
2012-11-07 21:41:31 +00:00
<label for="alt"><span class="alignleft">' . __('Alternative Text') . '</span></label>
2008-03-12 05:50:07 +00:00
</th>
2008-07-10 03:49:52 +00:00
<td class="field"><input id="alt" name="alt" value="" type="text" aria-required="true" />
2009-10-19 05:09:41 +00:00
<p class="help">' . __('Alt text for the image, e.g. “The Mona Lisa”') . '</p></td>
2008-02-28 21:29:51 +00:00
</tr>
2009-10-19 05:09:41 +00:00
' . $caption . '
2011-09-30 06:22:29 +00:00
<tr class="align image-only">
2014-01-24 19:06:15 +00:00
<th scope="row" class="label"><p><label for="align">' . __('Alignment') . '</label></p></th>
2008-02-28 21:29:51 +00:00
<td class="field">
2008-11-13 03:07:39 +00:00
<input name="align" id="align-none" value="none" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'none' ? ' checked="checked"' : '').' />
2008-07-10 03:49:52 +00:00
<label for="align-none" class="align image-align-none-label">' . __('None') . '</label>
2010-03-06 20:06:32 +00:00
<input name="align" id="align-left" value="left" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'left' ? ' checked="checked"' : '').' />
2008-07-10 03:49:52 +00:00
<label for="align-left" class="align image-align-left-label">' . __('Left') . '</label>
2010-03-06 20:06:32 +00:00
<input name="align" id="align-center" value="center" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'center' ? ' checked="checked"' : '').' />
2008-07-10 03:49:52 +00:00
<label for="align-center" class="align image-align-center-label">' . __('Center') . '</label>
2010-03-06 20:06:32 +00:00
<input name="align" id="align-right" value="right" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'right' ? ' checked="checked"' : '').' />
2008-07-10 03:49:52 +00:00
<label for="align-right" class="align image-align-right-label">' . __('Right') . '</label>
2008-02-28 21:29:51 +00:00
</td>
</tr>
2008-07-10 03:49:52 +00:00
2011-09-30 06:22:29 +00:00
<tr class="image-only">
2014-01-24 19:06:15 +00:00
<th scope="row" class="label">
2012-11-07 21:41:31 +00:00
<label for="url"><span class="alignleft">' . __('Link Image To:') . '</span></label>
2008-07-10 03:49:52 +00:00
</th>
<td class="field"><input id="url" name="url" value="" type="text" /><br />
2010-03-06 20:06:32 +00:00
<button type="button" class="button" value="" onclick="document.forms[0].url.value=null">' . __('None') . '</button>
<button type="button" class="button" value="" onclick="document.forms[0].url.value=document.forms[0].src.value">' . __('Link to image') . '</button>
2008-07-10 03:49:52 +00:00
<p class="help">' . __('Enter a link URL or click above for presets.') . '</p></td>
</tr>
2011-09-30 06:22:29 +00:00
<tr class="image-only">
<td></td>
<td>
<input type="button" class="button" id="go_button" style="color:#bbb;" onclick="addExtImage.insert()" value="' . esc_attr__('Insert into Post') . '" />
</td>
2008-02-28 21:29:51 +00:00
</tr>
2011-09-30 06:22:29 +00:00
<tr class="not-image">
<td></td>
<td>
' . get_submit_button( __( 'Insert into Post' ), 'button', 'insertonlybutton', false ) . '
</td>
2009-12-01 09:22:48 +00:00
</tr>
2008-02-28 21:29:51 +00:00
</tbody></table>
';
2010-04-16 21:45:16 +00:00
}
2011-11-11 19:40:23 +00:00
/**
2012-07-11 10:20:15 +00:00
* Displays the multi-file uploader message.
2011-11-11 19:40:23 +00:00
*
* @since 2.6.0
*/
function media_upload_flash_bypass() {
2012-11-26 23:10:19 +00:00
$browser_uploader = admin_url( 'media-new.php?browser-uploader' );
if ( $post = get_post() )
$browser_uploader .= '&post_id=' . intval( $post->ID );
elseif ( ! empty( $GLOBALS['post_ID'] ) )
$browser_uploader .= '&post_id=' . intval( $GLOBALS['post_ID'] );
2011-11-11 19:40:23 +00:00
?>
<p class="upload-flash-bypass">
2012-11-26 23:10:19 +00:00
<?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' ); ?>
2011-11-11 19:40:23 +00:00
</p>
<?php
}
2011-11-21 20:46:15 +00:00
add_action('post-plupload-upload-ui', 'media_upload_flash_bypass');
2011-11-11 19:40:23 +00:00
/**
2012-07-11 10:20:15 +00:00
* Displays the browser's built-in uploader message.
2011-11-11 19:40:23 +00:00
*
* @since 2.6.0
*/
function media_upload_html_bypass() {
?>
<p class="upload-html-bypass hide-if-no-js">
2014-03-19 22:13:14 +00:00
<?php _e('You are using the browser’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>.'); ?>
2011-11-11 19:40:23 +00:00
</p>
<?php
}
add_action('post-html-upload-ui', 'media_upload_html_bypass');
2012-07-11 10:20:15 +00:00
/**
2012-11-21 15:10:17 +00:00
* Used to display a "After a file has been uploaded..." help message.
2012-07-11 10:20:15 +00:00
*
* @since 3.3.0
*/
2012-11-21 15:10:17 +00:00
function media_upload_text_after() {}
2011-11-21 20:46:15 +00:00
2011-11-08 22:42:20 +00:00
/**
2012-07-11 10:20:15 +00:00
* Displays the checkbox to scale images.
2011-11-08 22:42:20 +00:00
*
2012-07-11 10:20:15 +00:00
* @since 3.3.0
2011-11-08 22:42:20 +00:00
*/
function media_upload_max_image_resize() {
$checked = get_user_setting('upload_resize') ? ' checked="true"' : '';
$a = $end = '';
if ( current_user_can( 'manage_options' ) ) {
$a = '<a href="' . esc_url( admin_url( 'options-media.php' ) ) . '" target="_blank">';
$end = '</a>';
}
?>
<p class="hide-if-no-js"><label>
<input name="image_resize" type="checkbox" id="image_resize" value="true"<?php echo $checked; ?> />
<?php
/* translators: %1$s is link start tag, %2$s is link end tag, %3$d is width, %4$d is height*/
printf( __( 'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).' ), $a, $end, (int) get_option( 'large_size_w', '1024' ), (int) get_option( 'large_size_h', '1024' ) );
?>
</label></p>
<?php
}
2012-07-11 10:20:15 +00:00
/**
* Displays the out of storage quota message in Multisite.
*
* @since 3.5.0
*/
function multisite_over_quota_message() {
echo '<p>' . sprintf( __( 'Sorry, you have used all of your storage quota of %s MB.' ), get_space_allowed() ) . '</p>';
}
2012-09-21 22:52:54 +00:00
/**
* Displays the image and editor in the post editor
*
* @since 3.5.0
*/
2013-06-19 21:10:51 +00:00
function edit_form_image_editor( $post ) {
2012-12-06 05:52:19 +00:00
$open = isset( $_GET['image-editor'] );
if ( $open )
require_once ABSPATH . 'wp-admin/includes/image-edit.php';
2012-09-21 22:52:54 +00:00
$thumb_url = false;
if ( $attachment_id = intval( $post->ID ) )
2012-12-06 05:52:19 +00:00
$thumb_url = wp_get_attachment_image_src( $attachment_id, array( 900, 450 ), true );
2012-09-21 22:52:54 +00:00
2012-11-05 14:04:22 +00:00
$alt_text = get_post_meta( $post->ID, '_wp_attachment_image_alt', true );
2012-09-21 22:52:54 +00:00
2013-03-21 05:17:25 +00:00
$att_url = wp_get_attachment_url( $post->ID ); ?>
<div class="wp_attachment_holder">
<?php
2012-12-06 00:41:06 +00:00
if ( wp_attachment_is_image( $post->ID ) ) :
$image_edit_button = '';
if ( wp_image_editor_supports( array( 'mime_type' => $post->post_mime_type ) ) ) {
$nonce = wp_create_nonce( "image_editor-$post->ID" );
$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>";
}
2014-03-19 22:13:14 +00:00
?>
2013-03-21 05:17:25 +00:00
2012-09-21 22:52:54 +00:00
<div class="imgedit-response" id="imgedit-response-<?php echo $attachment_id; ?>"></div>
2012-12-06 05:52:19 +00:00
<div<?php if ( $open ) echo ' style="display:none"'; ?> class="wp_attachment_image" id="media-head-<?php echo $attachment_id; ?>">
2012-11-21 12:05:24 +00:00
<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>
2012-09-21 22:52:54 +00:00
<p><?php echo $image_edit_button; ?></p>
</div>
2012-12-06 05:52:19 +00:00
<div<?php if ( ! $open ) echo ' style="display:none"'; ?> class="image-editor" id="image-editor-<?php echo $attachment_id; ?>">
<?php if ( $open ) wp_image_editor( $attachment_id ); ?>
</div>
2013-03-21 05:17:25 +00:00
<?php
elseif ( $attachment_id && 0 === strpos( $post->post_mime_type, 'audio/' ) ):
2014-03-06 19:34:14 +00:00
wp_maybe_generate_attachment_metadata( $post );
2014-02-07 22:41:12 +00:00
2013-07-03 20:19:00 +00:00
echo wp_audio_shortcode( array( 'src' => $att_url ) );
2013-03-21 05:17:25 +00:00
elseif ( $attachment_id && 0 === strpos( $post->post_mime_type, 'video/' ) ):
2012-09-21 22:52:54 +00:00
2014-03-06 19:34:14 +00:00
wp_maybe_generate_attachment_metadata( $post );
2014-02-07 22:41:12 +00:00
2013-03-21 05:17:25 +00:00
$meta = wp_get_attachment_metadata( $attachment_id );
2014-02-28 21:28:14 +00:00
$w = ! empty( $meta['width'] ) ? min( $meta['width'], 640 ) : 0;
$h = ! empty( $meta['height'] ) ? $meta['height'] : 0;
if ( $h && $w < $meta['width'] ) {
2013-04-12 22:27:24 +00:00
$h = round( ( $meta['height'] * $w ) / $meta['width'] );
2014-02-28 21:28:14 +00:00
}
2013-04-12 22:27:24 +00:00
2013-07-03 20:19:00 +00:00
$attr = array( 'src' => $att_url );
2014-02-28 21:28:14 +00:00
if ( ! empty( $w ) && ! empty( $h ) ) {
2013-07-03 20:19:00 +00:00
$attr['width'] = $w;
$attr['height'] = $h;
2014-02-28 21:28:14 +00:00
}
2013-07-03 20:19:00 +00:00
2014-07-08 17:48:17 +00:00
$thumb_id = get_post_thumbnail_id( $attachment_id );
if ( ! empty( $thumb_id ) ) {
$attr['poster'] = wp_get_attachment_url( $thumb_id );
}
2013-07-03 20:19:00 +00:00
echo wp_video_shortcode( $attr );
2013-03-21 05:17:25 +00:00
endif; ?>
</div>
2013-03-04 23:22:17 +00:00
<div class="wp_attachment_details edit-form-section">
2012-11-05 14:04:22 +00:00
<p>
2014-03-31 05:16:16 +00:00
<label for="attachment_caption"><strong><?php _e( 'Caption' ); ?></strong></label><br />
2012-11-05 14:04:22 +00:00
<textarea class="widefat" name="excerpt" id="attachment_caption"><?php echo $post->post_excerpt; ?></textarea>
</p>
2012-11-21 13:32:26 +00:00
2014-03-30 19:28:16 +00:00
2012-11-21 12:03:35 +00:00
<?php if ( 'image' === substr( $post->post_mime_type, 0, 5 ) ) : ?>
2012-11-05 14:04:22 +00:00
<p>
<label for="attachment_alt"><strong><?php _e( 'Alternative Text' ); ?></strong></label><br />
<input type="text" class="widefat" name="_wp_attachment_image_alt" id="attachment_alt" value="<?php echo esc_attr( $alt_text ); ?>" />
</p>
2012-11-21 13:32:26 +00:00
<?php endif; ?>
2012-12-06 00:41:06 +00:00
<?php
2013-04-22 20:17:25 +00:00
$quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' );
2012-12-06 00:41:06 +00:00
$editor_args = array(
'textarea_name' => 'content',
'textarea_rows' => 5,
'media_buttons' => false,
'tinymce' => false,
'quicktags' => $quicktags_settings,
);
?>
2014-03-30 19:28:16 +00:00
<label for="content"><strong><?php _e( 'Description' ); ?></strong><?php
2014-03-31 05:16:16 +00:00
if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ) {
echo ': ' . __( 'Displayed on attachment pages.' );
} ?></label>
2012-12-06 00:41:06 +00:00
<?php wp_editor( $post->post_content, 'attachment_content', $editor_args ); ?>
2012-09-21 22:52:54 +00:00
</div>
<?php
2012-11-21 18:53:00 +00:00
$extras = get_compat_media_markup( $post->ID );
echo $extras['item'];
2012-11-22 03:43:16 +00:00
echo '<input type="hidden" id="image-edit-context" value="edit-attachment" />' . "\n";
2012-11-05 14:04:22 +00:00
}
/**
* Displays non-editable attachment metadata in the publish metabox
*
* @since 3.5.0
*/
function attachment_submitbox_metadata() {
$post = get_post();
2013-07-08 13:55:50 +00:00
$filename = esc_html( wp_basename( $post->guid ) );
2012-11-05 14:04:22 +00:00
$media_dims = '';
$meta = wp_get_attachment_metadata( $post->ID );
2013-03-29 20:51:35 +00:00
if ( isset( $meta['width'], $meta['height'] ) )
2012-11-05 14:04:22 +00:00
$media_dims .= "<span id='media-dims-$post->ID'>{$meta['width']} × {$meta['height']}</span> ";
2014-01-06 05:48:12 +00:00
/** This filter is documented in wp-admin/includes/media.php */
2012-11-05 14:04:22 +00:00
$media_dims = apply_filters( 'media_meta', $media_dims, $post );
$att_url = wp_get_attachment_url( $post->ID );
?>
2013-08-22 15:24:10 +00:00
<div class="misc-pub-section misc-pub-attachment">
2012-11-05 14:04:22 +00:00
<label for="attachment_url"><?php _e( 'File URL:' ); ?></label>
<input type="text" class="widefat urlfield" readonly="readonly" name="attachment_url" value="<?php echo esc_attr($att_url); ?>" />
</div>
2013-08-22 15:24:10 +00:00
<div class="misc-pub-section misc-pub-filename">
2012-11-05 14:04:22 +00:00
<?php _e( 'File name:' ); ?> <strong><?php echo $filename; ?></strong>
</div>
2013-08-22 15:24:10 +00:00
<div class="misc-pub-section misc-pub-filetype">
2012-12-06 00:41:06 +00:00
<?php _e( 'File type:' ); ?> <strong><?php
2014-03-31 05:16:16 +00:00
if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) ) {
2012-12-06 00:41:06 +00:00
echo esc_html( strtoupper( $matches[1] ) );
2014-03-31 05:16:16 +00:00
list( $mime_type ) = explode( '/', $post->post_mime_type );
if ( $mime_type !== 'image' && ! empty( $meta['mime_type'] ) ) {
if ( $meta['mime_type'] !== "$mime_type/" . strtolower( $matches[1] ) ) {
echo ' (' . $meta['mime_type'] . ')';
}
}
} else {
2012-12-06 00:41:06 +00:00
echo strtoupper( str_replace( 'image/', '', $post->post_mime_type ) );
2014-03-31 05:16:16 +00:00
}
2012-12-06 00:41:06 +00:00
?></strong>
2012-11-05 14:04:22 +00:00
</div>
2013-09-12 15:10:09 +00:00
<?php
2013-09-24 20:23:10 +00:00
$file = get_attached_file( $post->ID );
$file_size = false;
2013-09-12 15:10:09 +00:00
if ( isset( $meta['filesize'] ) )
$file_size = $meta['filesize'];
2013-09-24 20:23:10 +00:00
elseif ( file_exists( $file ) )
$file_size = filesize( $file );
2013-09-12 15:10:09 +00:00
if ( ! empty( $file_size ) ) : ?>
<div class="misc-pub-section misc-pub-filesize">
<?php _e( 'File size:' ); ?> <strong><?php echo size_format( $file_size ); ?></strong>
</div>
<?php
endif;
2014-03-31 05:16:16 +00:00
if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ) {
2013-04-12 22:27:24 +00:00
2013-09-07 16:19:10 +00:00
/**
2014-01-06 05:48:12 +00:00
* Filter the audio and video metadata fields to be shown in the publish meta box.
2013-09-07 16:19:10 +00:00
*
* The key for each item in the array should correspond to an attachment
* metadata key, and the value should be the desired label.
*
2014-01-06 05:48:12 +00:00
* @since 3.7.0
2013-09-07 16:19:10 +00:00
*
2014-03-31 05:16:16 +00:00
* @param array $fields An array of the attachment metadata keys and labels.
2013-09-07 16:19:10 +00:00
*/
$fields = apply_filters( 'media_submitbox_misc_sections', array(
2013-04-12 22:27:24 +00:00
'length_formatted' => __( 'Length:' ),
2014-03-31 05:16:16 +00:00
'bitrate' => __( 'Bitrate:' ),
2013-09-07 16:19:10 +00:00
) );
2013-04-12 22:27:24 +00:00
2014-03-31 05:16:16 +00:00
foreach ( $fields as $key => $label ) {
if ( empty( $meta[ $key ] ) ) {
continue;
}
?>
2013-09-07 16:20:09 +00:00
<div class="misc-pub-section misc-pub-mime-meta misc-pub-<?php echo sanitize_html_class( $key ); ?>">
2014-03-31 05:16:16 +00:00
<?php echo $label ?> <strong><?php
switch ( $key ) {
case 'bitrate' :
echo round( $meta['bitrate'] / 1000 ) . 'kb/s';
if ( ! empty( $meta['bitrate_mode'] ) ) {
echo ' ' . strtoupper( esc_html( $meta['bitrate_mode'] ) );
}
break;
default:
echo esc_html( $meta[ $key ] );
break;
}
2013-04-12 22:27:24 +00:00
?></strong>
</div>
<?php
2014-03-31 05:16:16 +00:00
}
2013-04-12 22:27:24 +00:00
2013-09-07 16:19:10 +00:00
/**
2014-01-06 05:48:12 +00:00
* Filter the audio attachment metadata fields to be shown in the publish meta box.
2013-09-07 16:19:10 +00:00
*
* The key for each item in the array should correspond to an attachment
* metadata key, and the value should be the desired label.
*
2014-01-06 05:48:12 +00:00
* @since 3.7.0
2013-09-07 16:19:10 +00:00
*
2014-03-31 05:16:16 +00:00
* @param array $fields An array of the attachment metadata keys and labels.
2013-09-07 16:19:10 +00:00
*/
$audio_fields = apply_filters( 'audio_submitbox_misc_sections', array(
2013-04-12 22:27:24 +00:00
'dataformat' => __( 'Audio Format:' ),
2013-09-07 22:07:09 +00:00
'codec' => __( 'Audio Codec:' )
2013-09-07 16:19:10 +00:00
) );
2013-04-12 22:27:24 +00:00
2014-03-31 05:16:16 +00:00
foreach ( $audio_fields as $key => $label ) {
if ( empty( $meta['audio'][ $key ] ) ) {
continue;
}
?>
2013-09-07 16:20:09 +00:00
<div class="misc-pub-section misc-pub-audio misc-pub-<?php echo sanitize_html_class( $key ); ?>">
2013-04-12 22:27:24 +00:00
<?php echo $label; ?> <strong><?php echo esc_html( $meta['audio'][$key] ); ?></strong>
</div>
<?php
2014-03-31 05:16:16 +00:00
}
2013-04-12 22:27:24 +00:00
2014-03-31 05:16:16 +00:00
}
2013-04-12 22:27:24 +00:00
if ( $media_dims ) : ?>
2013-08-22 15:24:10 +00:00
<div class="misc-pub-section misc-pub-dimensions">
2012-11-05 14:04:22 +00:00
<?php _e( 'Dimensions:' ); ?> <strong><?php echo $media_dims; ?></strong>
</div>
<?php
endif;
2012-09-21 22:52:54 +00:00
}
2011-10-05 22:57:17 +00:00
add_filter( 'async_upload_image', 'get_media_item', 10, 2 );
add_filter( 'async_upload_audio', 'get_media_item', 10, 2 );
add_filter( 'async_upload_video', 'get_media_item', 10, 2 );
add_filter( 'async_upload_file', 'get_media_item', 10, 2 );
2008-02-26 19:30:10 +00:00
2011-10-05 22:36:03 +00:00
add_action( 'media_upload_image', 'wp_media_upload_handler' );
add_action( 'media_upload_audio', 'wp_media_upload_handler' );
add_action( 'media_upload_video', 'wp_media_upload_handler' );
add_action( 'media_upload_file', 'wp_media_upload_handler' );
2008-02-26 19:30:10 +00:00
2011-10-05 22:57:17 +00:00
add_filter( 'media_upload_gallery', 'media_upload_gallery' );
2011-10-31 21:38:28 +00:00
add_filter( 'media_upload_library', 'media_upload_library' );
2012-11-05 14:04:22 +00:00
add_action( 'attachment_submitbox_misc_actions', 'attachment_submitbox_metadata' );
2013-03-21 04:55:42 +00:00
/**
* Parse ID3v2, ID3v1, and getID3 comments to extract usable data
*
* @since 3.6.0
*
* @param array $metadata An existing array with data
* @param array $data Data supplied by ID3 tags
*/
function wp_add_id3_tag_data( &$metadata, $data ) {
foreach ( array( 'id3v2', 'id3v1' ) as $version ) {
if ( ! empty( $data[$version]['comments'] ) ) {
foreach ( $data[$version]['comments'] as $key => $list ) {
2014-09-10 21:57:15 +00:00
if ( 'length' !== $key && ! empty( $list ) ) {
2013-03-21 04:55:42 +00:00
$metadata[$key] = reset( $list );
2014-07-17 09:14:16 +00:00
// Fix bug in byte stream analysis.
2013-03-21 04:55:42 +00:00
if ( 'terms_of_use' === $key && 0 === strpos( $metadata[$key], 'yright notice.' ) )
$metadata[$key] = 'Cop' . $metadata[$key];
}
}
break;
}
}
if ( ! empty( $data['id3v2']['APIC'] ) ) {
$image = reset( $data['id3v2']['APIC']);
if ( ! empty( $image['data'] ) ) {
$metadata['image'] = array(
'data' => $image['data'],
'mime' => $image['image_mime'],
'width' => $image['image_width'],
'height' => $image['image_height']
);
}
} elseif ( ! empty( $data['comments']['picture'] ) ) {
$image = reset( $data['comments']['picture'] );
if ( ! empty( $image['data'] ) ) {
$metadata['image'] = array(
'data' => $image['data'],
'mime' => $image['image_mime']
);
}
}
}
/**
* Retrieve metadata from a video file's ID3 tags
*
* @since 3.6.0
*
* @param string $file Path to file.
2014-12-01 01:00:22 +00:00
* @return array|bool Returns array of metadata, if found.
2013-03-21 04:55:42 +00:00
*/
function wp_read_video_metadata( $file ) {
if ( ! file_exists( $file ) )
return false;
$metadata = array();
if ( ! class_exists( 'getID3' ) )
2013-07-13 00:37:36 +00:00
require( ABSPATH . WPINC . '/ID3/getid3.php' );
2013-03-21 04:55:42 +00:00
$id3 = new getID3();
$data = $id3->analyze( $file );
if ( isset( $data['video']['lossless'] ) )
$metadata['lossless'] = $data['video']['lossless'];
if ( ! empty( $data['video']['bitrate'] ) )
$metadata['bitrate'] = (int) $data['video']['bitrate'];
if ( ! empty( $data['video']['bitrate_mode'] ) )
$metadata['bitrate_mode'] = $data['video']['bitrate_mode'];
if ( ! empty( $data['filesize'] ) )
$metadata['filesize'] = (int) $data['filesize'];
if ( ! empty( $data['mime_type'] ) )
$metadata['mime_type'] = $data['mime_type'];
if ( ! empty( $data['playtime_seconds'] ) )
2014-09-10 21:57:15 +00:00
$metadata['length'] = (int) round( $data['playtime_seconds'] );
2013-03-21 04:55:42 +00:00
if ( ! empty( $data['playtime_string'] ) )
$metadata['length_formatted'] = $data['playtime_string'];
if ( ! empty( $data['video']['resolution_x'] ) )
$metadata['width'] = (int) $data['video']['resolution_x'];
if ( ! empty( $data['video']['resolution_y'] ) )
$metadata['height'] = (int) $data['video']['resolution_y'];
if ( ! empty( $data['fileformat'] ) )
$metadata['fileformat'] = $data['fileformat'];
if ( ! empty( $data['video']['dataformat'] ) )
$metadata['dataformat'] = $data['video']['dataformat'];
if ( ! empty( $data['video']['encoder'] ) )
$metadata['encoder'] = $data['video']['encoder'];
if ( ! empty( $data['video']['codec'] ) )
$metadata['codec'] = $data['video']['codec'];
2013-04-06 00:29:12 +00:00
if ( ! empty( $data['audio'] ) ) {
unset( $data['audio']['streams'] );
$metadata['audio'] = $data['audio'];
}
2013-03-21 04:55:42 +00:00
wp_add_id3_tag_data( $metadata, $data );
return $metadata;
}
/**
* Retrieve metadata from a audio file's ID3 tags
*
* @since 3.6.0
*
* @param string $file Path to file.
* @return array|boolean Returns array of metadata, if found.
*/
function wp_read_audio_metadata( $file ) {
if ( ! file_exists( $file ) )
return false;
$metadata = array();
if ( ! class_exists( 'getID3' ) )
2013-07-13 00:37:36 +00:00
require( ABSPATH . WPINC . '/ID3/getid3.php' );
2013-03-21 04:55:42 +00:00
$id3 = new getID3();
$data = $id3->analyze( $file );
if ( ! empty( $data['audio'] ) ) {
unset( $data['audio']['streams'] );
$metadata = $data['audio'];
}
if ( ! empty( $data['fileformat'] ) )
$metadata['fileformat'] = $data['fileformat'];
if ( ! empty( $data['filesize'] ) )
$metadata['filesize'] = (int) $data['filesize'];
if ( ! empty( $data['mime_type'] ) )
$metadata['mime_type'] = $data['mime_type'];
if ( ! empty( $data['playtime_seconds'] ) )
2014-09-10 21:57:15 +00:00
$metadata['length'] = (int) round( $data['playtime_seconds'] );
2013-03-21 04:55:42 +00:00
if ( ! empty( $data['playtime_string'] ) )
$metadata['length_formatted'] = $data['playtime_string'];
wp_add_id3_tag_data( $metadata, $data );
return $metadata;
}