Changeset 33280 for trunk/src/wp-admin/includes/ajax-actions.php
- Timestamp:
- 07/15/2015 07:53:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r33257 r33280 3096 3096 3097 3097 /** 3098 * Fires before a cropped image is saved. 3099 * 3100 * Allows to add filters to modify the way a cropped image is saved. 3101 * 3102 * @since 4.3.0 3103 * 3104 * @param string $context The Customizer control requesting the cropped image. 3105 * @param int $attachment_id The attachment ID of the original image. 3106 * @param string $cropped Path to the cropped image file. 3107 */ 3108 do_action( 'wp_ajax_crop_image_pre_save', $context, $attachment_id, $cropped ); 3109 3110 /** This filter is documented in wp-admin/custom-header.php */ 3111 $cropped = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication. 3112 3113 $parent_url = get_post( $attachment_id )->guid; 3114 $url = str_replace( basename( $parent_url ), basename( $cropped ), $parent_url ); 3115 3116 $size = @getimagesize( $cropped ); 3117 $image_type = ( $size ) ? $size['mime'] : 'image/jpeg'; 3118 3119 $object = array( 3120 'post_title' => basename( $cropped ), 3121 'post_content' => $url, 3122 'post_mime_type' => $image_type, 3123 'guid' => $url, 3124 'context' => $context, 3125 ); 3126 3127 $attachment_id = wp_insert_attachment( $object, $cropped ); 3128 $metadata = wp_generate_attachment_metadata( $attachment_id, $cropped ); 3129 3130 /** 3131 * Filter the cropped image attachment metadata. 3132 * 3133 * @since 4.3.0 3134 * 3135 * @see wp_generate_attachment_metadata() 3136 * 3137 * @param array $metadata Attachment metadata. 3138 */ 3139 $metadata = apply_filters( 'wp_ajax_cropped_attachment_metadata', $metadata ); 3140 wp_update_attachment_metadata( $attachment_id, $metadata ); 3141 3142 /** 3098 3143 * Filter the attachment ID for a cropped image. 3099 3144 * 3100 3145 * @since 4.3.0 3101 3146 * 3102 * @param int $attachment_id The ID of the cropped image.3103 * @param string $context The featurerequesting the cropped image.3147 * @param int $attachment_id The attachment ID of the cropped image. 3148 * @param string $context The Customizer control requesting the cropped image. 3104 3149 */ 3105 $attachment_id = apply_filters( 'wp_ajax_cropped_attachment_id', 0, $context ); 3106 3107 if ( ! $attachment_id ) { 3108 wp_send_json_error(); 3109 } 3150 $attachment_id = apply_filters( 'wp_ajax_cropped_attachment_id', $attachment_id, $context ); 3110 3151 } 3111 3152
Note: See TracChangeset
for help on using the changeset viewer.