author | Anthony Ly <anthonyly.com@gmail.com> |
Wed, 19 Dec 2012 17:46:52 -0800 | |
changeset 204 | 09a1c134465b |
parent 194 | 32102edaa81b |
permissions | -rw-r--r-- |
136 | 1 |
<?php |
2 |
/** |
|
3 |
* WordPress Image Editor |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
function wp_image_editor($post_id, $msg = false) { |
|
10 |
$nonce = wp_create_nonce("image_editor-$post_id"); |
|
11 |
$meta = wp_get_attachment_metadata($post_id); |
|
12 |
$thumb = image_get_intermediate_size($post_id, 'thumbnail'); |
|
13 |
$sub_sizes = isset($meta['sizes']) && is_array($meta['sizes']); |
|
14 |
$note = ''; |
|
15 |
||
16 |
if ( is_array($meta) && isset($meta['width']) ) |
|
17 |
$big = max( $meta['width'], $meta['height'] ); |
|
18 |
else |
|
19 |
die( __('Image data does not exist. Please re-upload the image.') ); |
|
20 |
||
21 |
$sizer = $big > 400 ? 400 / $big : 1; |
|
22 |
||
23 |
$backup_sizes = get_post_meta( $post_id, '_wp_attachment_backup_sizes', true ); |
|
24 |
$can_restore = !empty($backup_sizes) && isset($backup_sizes['full-orig']) |
|
25 |
&& $backup_sizes['full-orig']['file'] != basename($meta['file']); |
|
26 |
||
27 |
if ( $msg ) { |
|
28 |
if ( isset($msg->error) ) |
|
29 |
$note = "<div class='error'><p>$msg->error</p></div>"; |
|
30 |
elseif ( isset($msg->msg) ) |
|
31 |
$note = "<div class='updated'><p>$msg->msg</p></div>"; |
|
32 |
} |
|
33 |
||
34 |
?> |
|
35 |
<div class="imgedit-wrap"> |
|
36 |
<?php echo $note; ?> |
|
37 |
<table id="imgedit-panel-<?php echo $post_id; ?>"><tbody> |
|
38 |
<tr><td> |
|
39 |
<div class="imgedit-menu"> |
|
40 |
<div onclick="imageEdit.crop(<?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-crop disabled" title="<?php esc_attr_e( 'Crop' ); ?>"></div><?php |
|
41 |
||
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
42 |
// On some setups GD library does not provide imagerotate() - Ticket #11536 |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
43 |
if ( wp_image_editor_supports( array( 'mime_type' => get_post_mime_type( $post_id ), 'methods' => array( 'rotate' ) ) ) ) { ?> |
136 | 44 |
<div class="imgedit-rleft" onclick="imageEdit.rotate( 90, <?php echo "$post_id, '$nonce'"; ?>, this)" title="<?php esc_attr_e( 'Rotate counter-clockwise' ); ?>"></div> |
45 |
<div class="imgedit-rright" onclick="imageEdit.rotate(-90, <?php echo "$post_id, '$nonce'"; ?>, this)" title="<?php esc_attr_e( 'Rotate clockwise' ); ?>"></div> |
|
46 |
<?php } else { |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
47 |
$note_no_rotate = esc_attr__('Image rotation is not supported by your web host.'); |
136 | 48 |
?> |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
49 |
<div class="imgedit-rleft disabled" title="<?php echo $note_no_rotate; ?>"></div> |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
50 |
<div class="imgedit-rright disabled" title="<?php echo $note_no_rotate; ?>"></div> |
136 | 51 |
<?php } ?> |
52 |
||
53 |
<div onclick="imageEdit.flip(1, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-flipv" title="<?php esc_attr_e( 'Flip vertically' ); ?>"></div> |
|
54 |
<div onclick="imageEdit.flip(2, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-fliph" title="<?php esc_attr_e( 'Flip horizontally' ); ?>"></div> |
|
55 |
||
56 |
<div id="image-undo-<?php echo $post_id; ?>" onclick="imageEdit.undo(<?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-undo disabled" title="<?php esc_attr_e( 'Undo' ); ?>"></div> |
|
57 |
<div id="image-redo-<?php echo $post_id; ?>" onclick="imageEdit.redo(<?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-redo disabled" title="<?php esc_attr_e( 'Redo' ); ?>"></div> |
|
58 |
<br class="clear" /> |
|
59 |
</div> |
|
60 |
||
61 |
<input type="hidden" id="imgedit-sizer-<?php echo $post_id; ?>" value="<?php echo $sizer; ?>" /> |
|
62 |
<input type="hidden" id="imgedit-minthumb-<?php echo $post_id; ?>" value="<?php echo ( get_option('thumbnail_size_w') . ':' . get_option('thumbnail_size_h') ); ?>" /> |
|
63 |
<input type="hidden" id="imgedit-history-<?php echo $post_id; ?>" value="" /> |
|
64 |
<input type="hidden" id="imgedit-undone-<?php echo $post_id; ?>" value="0" /> |
|
65 |
<input type="hidden" id="imgedit-selection-<?php echo $post_id; ?>" value="" /> |
|
66 |
<input type="hidden" id="imgedit-x-<?php echo $post_id; ?>" value="<?php echo $meta['width']; ?>" /> |
|
67 |
<input type="hidden" id="imgedit-y-<?php echo $post_id; ?>" value="<?php echo $meta['height']; ?>" /> |
|
68 |
||
69 |
<div id="imgedit-crop-<?php echo $post_id; ?>" class="imgedit-crop-wrap"> |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
70 |
<img id="image-preview-<?php echo $post_id; ?>" onload="imageEdit.imgLoaded('<?php echo $post_id; ?>')" src="<?php echo admin_url( 'admin-ajax.php', 'relative' ); ?>?action=imgedit-preview&_ajax_nonce=<?php echo $nonce; ?>&postid=<?php echo $post_id; ?>&rand=<?php echo rand(1, 99999); ?>" /> |
136 | 71 |
</div> |
72 |
||
73 |
<div class="imgedit-submit"> |
|
74 |
<input type="button" onclick="imageEdit.close(<?php echo $post_id; ?>, 1)" class="button" value="<?php esc_attr_e( 'Cancel' ); ?>" /> |
|
75 |
<input type="button" onclick="imageEdit.save(<?php echo "$post_id, '$nonce'"; ?>)" disabled="disabled" class="button-primary imgedit-submit-btn" value="<?php esc_attr_e( 'Save' ); ?>" /> |
|
76 |
</div> |
|
77 |
</td> |
|
78 |
||
79 |
<td class="imgedit-settings"> |
|
80 |
<div class="imgedit-group"> |
|
81 |
<div class="imgedit-group-top"> |
|
82 |
<a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><strong><?php _e('Scale Image'); ?></strong></a> |
|
83 |
<div class="imgedit-help"> |
|
84 |
<p><?php _e('You can proportionally scale the original image. For best results the scaling should be done before performing any other operations on it like crop, rotate, etc. Note that if you make the image larger it may become fuzzy.'); ?></p> |
|
85 |
<p><?php printf( __('Original dimensions %s'), $meta['width'] . '×' . $meta['height'] ); ?></p> |
|
86 |
<div class="imgedit-submit"> |
|
87 |
<span class="nowrap"><input type="text" id="imgedit-scale-width-<?php echo $post_id; ?>" onkeyup="imageEdit.scaleChanged(<?php echo $post_id; ?>, 1)" onblur="imageEdit.scaleChanged(<?php echo $post_id; ?>, 1)" style="width:4em;" value="<?php echo $meta['width']; ?>" />×<input type="text" id="imgedit-scale-height-<?php echo $post_id; ?>" onkeyup="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0)" onblur="imageEdit.scaleChanged(<?php echo $post_id; ?>, 0)" style="width:4em;" value="<?php echo $meta['height']; ?>" /> |
|
88 |
<span class="imgedit-scale-warn" id="imgedit-scale-warn-<?php echo $post_id; ?>">!</span></span> |
|
89 |
<input type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'scale')" class="button-primary" value="<?php esc_attr_e( 'Scale' ); ?>" /> |
|
90 |
</div> |
|
91 |
</div> |
|
92 |
</div> |
|
93 |
||
94 |
<?php if ( $can_restore ) { ?> |
|
95 |
||
96 |
<div class="imgedit-group-top"> |
|
97 |
<a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><strong><?php _e('Restore Original Image'); ?></strong></a> |
|
98 |
<div class="imgedit-help"> |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
99 |
<p><?php _e('Discard any changes and restore the original image.'); |
136 | 100 |
|
101 |
if ( !defined('IMAGE_EDIT_OVERWRITE') || !IMAGE_EDIT_OVERWRITE ) |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
102 |
echo ' '.__('Previously edited copies of the image will not be deleted.'); |
136 | 103 |
|
104 |
?></p> |
|
105 |
<div class="imgedit-submit"> |
|
106 |
<input type="button" onclick="imageEdit.action(<?php echo "$post_id, '$nonce'"; ?>, 'restore')" class="button-primary" value="<?php esc_attr_e( 'Restore image' ); ?>" <?php echo $can_restore; ?> /> |
|
107 |
</div> |
|
108 |
</div> |
|
109 |
</div> |
|
110 |
||
111 |
<?php } ?> |
|
112 |
||
113 |
</div> |
|
114 |
||
115 |
<div class="imgedit-group"> |
|
116 |
<div class="imgedit-group-top"> |
|
117 |
<strong><?php _e('Image Crop'); ?></strong> |
|
118 |
<a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><?php _e('(help)'); ?></a> |
|
119 |
<div class="imgedit-help"> |
|
120 |
<p><?php _e('The image can be cropped by clicking on it and dragging to select the desired part. While dragging the dimensions of the selection are displayed below.'); ?></p> |
|
121 |
||
122 |
<p><strong><?php _e('Crop Aspect Ratio'); ?></strong><br /> |
|
123 |
<?php _e('You can specify the crop selection aspect ratio then hold down the Shift key while dragging to lock it. The values can be 1:1 (square), 4:3, 16:9, etc. If there is a selection, specifying aspect ratio will set it immediately.'); ?></p> |
|
124 |
||
125 |
<p><strong><?php _e('Crop Selection'); ?></strong><br /> |
|
126 |
<?php _e('Once started, the selection can be adjusted by entering new values (in pixels). Note that these values are scaled to approximately match the original image dimensions. The minimum selection size equals the thumbnail size as set in the Media settings.'); ?></p> |
|
127 |
</div> |
|
128 |
</div> |
|
129 |
||
130 |
<p> |
|
131 |
<?php _e('Aspect ratio:'); ?> |
|
132 |
<span class="nowrap"> |
|
133 |
<input type="text" id="imgedit-crop-width-<?php echo $post_id; ?>" onkeyup="imageEdit.setRatioSelection(<?php echo $post_id; ?>, 0, this)" style="width:3em;" /> |
|
134 |
: |
|
135 |
<input type="text" id="imgedit-crop-height-<?php echo $post_id; ?>" onkeyup="imageEdit.setRatioSelection(<?php echo $post_id; ?>, 1, this)" style="width:3em;" /> |
|
136 |
</span> |
|
137 |
</p> |
|
138 |
||
139 |
<p id="imgedit-crop-sel-<?php echo $post_id; ?>"> |
|
140 |
<?php _e('Selection:'); ?> |
|
141 |
<span class="nowrap"> |
|
142 |
<input type="text" id="imgedit-sel-width-<?php echo $post_id; ?>" onkeyup="imageEdit.setNumSelection(<?php echo $post_id; ?>)" style="width:4em;" /> |
|
143 |
: |
|
144 |
<input type="text" id="imgedit-sel-height-<?php echo $post_id; ?>" onkeyup="imageEdit.setNumSelection(<?php echo $post_id; ?>)" style="width:4em;" /> |
|
145 |
</span> |
|
146 |
</p> |
|
147 |
</div> |
|
148 |
||
149 |
<?php if ( $thumb && $sub_sizes ) { |
|
150 |
$thumb_img = wp_constrain_dimensions( $thumb['width'], $thumb['height'], 160, 120 ); |
|
151 |
?> |
|
152 |
||
153 |
<div class="imgedit-group imgedit-applyto"> |
|
154 |
<div class="imgedit-group-top"> |
|
155 |
<strong><?php _e('Thumbnail Settings'); ?></strong> |
|
156 |
<a class="imgedit-help-toggle" onclick="imageEdit.toggleHelp(this);return false;" href="#"><?php _e('(help)'); ?></a> |
|
157 |
<p class="imgedit-help"><?php _e('The thumbnail image can be cropped differently. For example it can be square or contain only a portion of the original image to showcase it better. Here you can select whether to apply changes to all image sizes or make the thumbnail different.'); ?></p> |
|
158 |
</div> |
|
159 |
||
160 |
<p> |
|
161 |
<img src="<?php echo $thumb['url']; ?>" width="<?php echo $thumb_img[0]; ?>" height="<?php echo $thumb_img[1]; ?>" class="imgedit-size-preview" alt="" /><br /><?php _e('Current thumbnail'); ?> |
|
162 |
</p> |
|
163 |
||
164 |
<p id="imgedit-save-target-<?php echo $post_id; ?>"> |
|
165 |
<strong><?php _e('Apply changes to:'); ?></strong><br /> |
|
166 |
||
167 |
<label class="imgedit-label"> |
|
168 |
<input type="radio" name="imgedit-target-<?php echo $post_id; ?>" value="all" checked="checked" /> |
|
169 |
<?php _e('All image sizes'); ?></label> |
|
170 |
||
171 |
<label class="imgedit-label"> |
|
172 |
<input type="radio" name="imgedit-target-<?php echo $post_id; ?>" value="thumbnail" /> |
|
173 |
<?php _e('Thumbnail'); ?></label> |
|
174 |
||
175 |
<label class="imgedit-label"> |
|
176 |
<input type="radio" name="imgedit-target-<?php echo $post_id; ?>" value="nothumb" /> |
|
177 |
<?php _e('All sizes except thumbnail'); ?></label> |
|
178 |
</p> |
|
179 |
</div> |
|
180 |
||
181 |
<?php } ?> |
|
182 |
||
183 |
</td></tr> |
|
184 |
</tbody></table> |
|
185 |
<div class="imgedit-wait" id="imgedit-wait-<?php echo $post_id; ?>"></div> |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
186 |
<script type="text/javascript">jQuery( function() { imageEdit.init(<?php echo $post_id; ?>); });</script> |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
187 |
<div class="hidden" id="imgedit-leaving-<?php echo $post_id; ?>"><?php _e("There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor."); ?></div> |
136 | 188 |
</div> |
189 |
<?php |
|
190 |
} |
|
191 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
192 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
193 |
* Streams image in WP_Image_Editor to browser. |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
194 |
* Provided for backcompat reasons |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
195 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
196 |
* @param WP_Image_Editor $image |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
197 |
* @param string $mime_type |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
198 |
* @param int $post_id |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
199 |
* @return boolean |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
200 |
*/ |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
201 |
function wp_stream_image( $image, $mime_type, $post_id ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
202 |
if ( $image instanceof WP_Image_Editor ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
203 |
$image = apply_filters('image_editor_save_pre', $image, $post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
204 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
205 |
if ( is_wp_error( $image->stream( $mime_type ) ) ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
206 |
return false; |
136 | 207 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
208 |
return true; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
209 |
} else { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
210 |
_deprecated_argument( __FUNCTION__, '3.5', __( '$image needs to be an WP_Image_Editor object' ) ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
211 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
212 |
$image = apply_filters('image_save_pre', $image, $post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
213 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
214 |
switch ( $mime_type ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
215 |
case 'image/jpeg': |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
216 |
header( 'Content-Type: image/jpeg' ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
217 |
return imagejpeg( $image, null, 90 ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
218 |
case 'image/png': |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
219 |
header( 'Content-Type: image/png' ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
220 |
return imagepng( $image ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
221 |
case 'image/gif': |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
222 |
header( 'Content-Type: image/gif' ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
223 |
return imagegif( $image ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
224 |
default: |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
225 |
return false; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
226 |
} |
136 | 227 |
} |
228 |
} |
|
229 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
230 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
231 |
* Saves Image to File |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
232 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
233 |
* @param string $filename |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
234 |
* @param WP_Image_Editor $image |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
235 |
* @param string $mime_type |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
236 |
* @param int $post_id |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
237 |
* @return boolean |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
238 |
*/ |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
239 |
function wp_save_image_file( $filename, $image, $mime_type, $post_id ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
240 |
if ( $image instanceof WP_Image_Editor ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
241 |
$image = apply_filters('image_editor_save_pre', $image, $post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
242 |
$saved = apply_filters('wp_save_image_editor_file', null, $filename, $image, $mime_type, $post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
243 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
244 |
if ( null !== $saved ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
245 |
return $saved; |
136 | 246 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
247 |
return $image->save( $filename, $mime_type ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
248 |
} else { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
249 |
_deprecated_argument( __FUNCTION__, '3.5', __( '$image needs to be an WP_Image_Editor object' ) ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
250 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
251 |
$image = apply_filters('image_save_pre', $image, $post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
252 |
$saved = apply_filters('wp_save_image_file', null, $filename, $image, $mime_type, $post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
253 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
254 |
if ( null !== $saved ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
255 |
return $saved; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
256 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
257 |
switch ( $mime_type ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
258 |
case 'image/jpeg': |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
259 |
return imagejpeg( $image, $filename, apply_filters( 'jpeg_quality', 90, 'edit_image' ) ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
260 |
case 'image/png': |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
261 |
return imagepng( $image, $filename ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
262 |
case 'image/gif': |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
263 |
return imagegif( $image, $filename ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
264 |
default: |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
265 |
return false; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
266 |
} |
136 | 267 |
} |
268 |
} |
|
269 |
||
270 |
function _image_get_preview_ratio($w, $h) { |
|
271 |
$max = max($w, $h); |
|
272 |
return $max > 400 ? (400 / $max) : 1; |
|
273 |
} |
|
274 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
275 |
// @TODO: Returns GD resource, but is NOT public |
136 | 276 |
function _rotate_image_resource($img, $angle) { |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
277 |
_deprecated_function( __FUNCTION__, '3.5', __( 'Use WP_Image_Editor::rotate' ) ); |
136 | 278 |
if ( function_exists('imagerotate') ) { |
279 |
$rotated = imagerotate($img, $angle, 0); |
|
280 |
if ( is_resource($rotated) ) { |
|
281 |
imagedestroy($img); |
|
282 |
$img = $rotated; |
|
283 |
} |
|
284 |
} |
|
285 |
return $img; |
|
286 |
} |
|
287 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
288 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
289 |
* @TODO: Only used within image_edit_apply_changes |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
290 |
* and receives/returns GD Resource. |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
291 |
* Consider removal. |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
292 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
293 |
* @param GD_Resource $img |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
294 |
* @param boolean $horz |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
295 |
* @param boolean $vert |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
296 |
* @return GD_Resource |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
297 |
*/ |
136 | 298 |
function _flip_image_resource($img, $horz, $vert) { |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
299 |
_deprecated_function( __FUNCTION__, '3.5', __( 'Use WP_Image_Editor::flip' ) ); |
136 | 300 |
$w = imagesx($img); |
301 |
$h = imagesy($img); |
|
302 |
$dst = wp_imagecreatetruecolor($w, $h); |
|
303 |
if ( is_resource($dst) ) { |
|
304 |
$sx = $vert ? ($w - 1) : 0; |
|
305 |
$sy = $horz ? ($h - 1) : 0; |
|
306 |
$sw = $vert ? -$w : $w; |
|
307 |
$sh = $horz ? -$h : $h; |
|
308 |
||
309 |
if ( imagecopyresampled($dst, $img, 0, 0, $sx, $sy, $w, $h, $sw, $sh) ) { |
|
310 |
imagedestroy($img); |
|
311 |
$img = $dst; |
|
312 |
} |
|
313 |
} |
|
314 |
return $img; |
|
315 |
} |
|
316 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
317 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
318 |
* @TODO: Only used within image_edit_apply_changes |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
319 |
* and receives/returns GD Resource. |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
320 |
* Consider removal. |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
321 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
322 |
* @param GD_Resource $img |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
323 |
* @param float $x |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
324 |
* @param float $y |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
325 |
* @param float $w |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
326 |
* @param float $h |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
327 |
* @return GD_Resource |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
328 |
*/ |
136 | 329 |
function _crop_image_resource($img, $x, $y, $w, $h) { |
330 |
$dst = wp_imagecreatetruecolor($w, $h); |
|
331 |
if ( is_resource($dst) ) { |
|
332 |
if ( imagecopy($dst, $img, 0, 0, $x, $y, $w, $h) ) { |
|
333 |
imagedestroy($img); |
|
334 |
$img = $dst; |
|
335 |
} |
|
336 |
} |
|
337 |
return $img; |
|
338 |
} |
|
339 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
340 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
341 |
* Performs group of changes on Editor specified. |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
342 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
343 |
* @param WP_Image_Editor $image |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
344 |
* @param type $changes |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
345 |
* @return WP_Image_Editor |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
346 |
*/ |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
347 |
function image_edit_apply_changes( $image, $changes ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
348 |
if ( is_resource( $image ) ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
349 |
_deprecated_argument( __FUNCTION__, '3.5', __( '$image needs to be an WP_Image_Editor object' ) ); |
136 | 350 |
|
351 |
if ( !is_array($changes) ) |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
352 |
return $image; |
136 | 353 |
|
354 |
// expand change operations |
|
355 |
foreach ( $changes as $key => $obj ) { |
|
356 |
if ( isset($obj->r) ) { |
|
357 |
$obj->type = 'rotate'; |
|
358 |
$obj->angle = $obj->r; |
|
359 |
unset($obj->r); |
|
360 |
} elseif ( isset($obj->f) ) { |
|
361 |
$obj->type = 'flip'; |
|
362 |
$obj->axis = $obj->f; |
|
363 |
unset($obj->f); |
|
364 |
} elseif ( isset($obj->c) ) { |
|
365 |
$obj->type = 'crop'; |
|
366 |
$obj->sel = $obj->c; |
|
367 |
unset($obj->c); |
|
368 |
} |
|
369 |
$changes[$key] = $obj; |
|
370 |
} |
|
371 |
||
372 |
// combine operations |
|
373 |
if ( count($changes) > 1 ) { |
|
374 |
$filtered = array($changes[0]); |
|
375 |
for ( $i = 0, $j = 1; $j < count($changes); $j++ ) { |
|
376 |
$combined = false; |
|
377 |
if ( $filtered[$i]->type == $changes[$j]->type ) { |
|
378 |
switch ( $filtered[$i]->type ) { |
|
379 |
case 'rotate': |
|
380 |
$filtered[$i]->angle += $changes[$j]->angle; |
|
381 |
$combined = true; |
|
382 |
break; |
|
383 |
case 'flip': |
|
384 |
$filtered[$i]->axis ^= $changes[$j]->axis; |
|
385 |
$combined = true; |
|
386 |
break; |
|
387 |
} |
|
388 |
} |
|
389 |
if ( !$combined ) |
|
390 |
$filtered[++$i] = $changes[$j]; |
|
391 |
} |
|
392 |
$changes = $filtered; |
|
393 |
unset($filtered); |
|
394 |
} |
|
395 |
||
396 |
// image resource before applying the changes |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
397 |
if ( $image instanceof WP_Image_Editor ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
398 |
$image = apply_filters('wp_image_editor_before_change', $image, $changes); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
399 |
elseif ( is_resource( $image ) ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
400 |
$image = apply_filters('image_edit_before_change', $image, $changes); |
136 | 401 |
|
402 |
foreach ( $changes as $operation ) { |
|
403 |
switch ( $operation->type ) { |
|
404 |
case 'rotate': |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
405 |
if ( $operation->angle != 0 ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
406 |
if ( $image instanceof WP_Image_Editor ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
407 |
$image->rotate( $operation->angle ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
408 |
else |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
409 |
$image = _rotate_image_resource( $image, $operation->angle ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
410 |
} |
136 | 411 |
break; |
412 |
case 'flip': |
|
413 |
if ( $operation->axis != 0 ) |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
414 |
if ( $image instanceof WP_Image_Editor ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
415 |
$image->flip( ($operation->axis & 1) != 0, ($operation->axis & 2) != 0 ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
416 |
else |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
417 |
$image = _flip_image_resource( $image, ( $operation->axis & 1 ) != 0, ( $operation->axis & 2 ) != 0 ); |
136 | 418 |
break; |
419 |
case 'crop': |
|
420 |
$sel = $operation->sel; |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
421 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
422 |
if ( $image instanceof WP_Image_Editor ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
423 |
$size = $image->get_size(); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
424 |
$w = $size['width']; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
425 |
$h = $size['height']; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
426 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
427 |
$scale = 1 / _image_get_preview_ratio( $w, $h ); // discard preview scaling |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
428 |
$image->crop( $sel->x * $scale, $sel->y * $scale, $sel->w * $scale, $sel->h * $scale ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
429 |
} else { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
430 |
$scale = 1 / _image_get_preview_ratio( imagesx( $image ), imagesy( $image ) ); // discard preview scaling |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
431 |
$image = _crop_image_resource( $image, $sel->x * $scale, $sel->y * $scale, $sel->w * $scale, $sel->h * $scale ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
432 |
} |
136 | 433 |
break; |
434 |
} |
|
435 |
} |
|
436 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
437 |
return $image; |
136 | 438 |
} |
439 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
440 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
441 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
442 |
* Streams image in post to browser, along with enqueued changes |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
443 |
* in $_REQUEST['history'] |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
444 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
445 |
* @param int $post_id |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
446 |
* @return boolean |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
447 |
*/ |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
448 |
function stream_preview_image( $post_id ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
449 |
$post = get_post( $post_id ); |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
450 |
@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) ); |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
451 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
452 |
$img = wp_get_image_editor( _load_image_to_edit_path( $post_id ) ); |
136 | 453 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
454 |
if ( is_wp_error( $img ) ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
455 |
return false; |
136 | 456 |
|
457 |
$changes = !empty($_REQUEST['history']) ? json_decode( stripslashes($_REQUEST['history']) ) : null; |
|
458 |
if ( $changes ) |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
459 |
$img = image_edit_apply_changes( $img, $changes ); |
136 | 460 |
|
461 |
// scale the image |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
462 |
$size = $img->get_size(); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
463 |
$w = $size['width']; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
464 |
$h = $size['height']; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
465 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
466 |
$ratio = _image_get_preview_ratio( $w, $h ); |
136 | 467 |
$w2 = $w * $ratio; |
468 |
$h2 = $h * $ratio; |
|
469 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
470 |
if ( is_wp_error( $img->resize( $w2, $h2 ) ) ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
471 |
return false; |
136 | 472 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
473 |
return wp_stream_image( $img, $post->post_mime_type, $post_id ); |
136 | 474 |
} |
475 |
||
476 |
function wp_restore_image($post_id) { |
|
477 |
$meta = wp_get_attachment_metadata($post_id); |
|
478 |
$file = get_attached_file($post_id); |
|
479 |
$backup_sizes = get_post_meta( $post_id, '_wp_attachment_backup_sizes', true ); |
|
480 |
$restored = false; |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
481 |
$msg = new stdClass; |
136 | 482 |
|
483 |
if ( !is_array($backup_sizes) ) { |
|
484 |
$msg->error = __('Cannot load image metadata.'); |
|
485 |
return $msg; |
|
486 |
} |
|
487 |
||
488 |
$parts = pathinfo($file); |
|
489 |
$suffix = time() . rand(100, 999); |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
490 |
$default_sizes = get_intermediate_image_sizes(); |
136 | 491 |
|
492 |
if ( isset($backup_sizes['full-orig']) && is_array($backup_sizes['full-orig']) ) { |
|
493 |
$data = $backup_sizes['full-orig']; |
|
494 |
||
495 |
if ( $parts['basename'] != $data['file'] ) { |
|
496 |
if ( defined('IMAGE_EDIT_OVERWRITE') && IMAGE_EDIT_OVERWRITE ) { |
|
497 |
// delete only if it's edited image |
|
498 |
if ( preg_match('/-e[0-9]{13}\./', $parts['basename']) ) { |
|
499 |
$delpath = apply_filters('wp_delete_file', $file); |
|
500 |
@unlink($delpath); |
|
501 |
} |
|
502 |
} else { |
|
503 |
$backup_sizes["full-$suffix"] = array('width' => $meta['width'], 'height' => $meta['height'], 'file' => $parts['basename']); |
|
504 |
} |
|
505 |
} |
|
506 |
||
507 |
$restored_file = path_join($parts['dirname'], $data['file']); |
|
508 |
$restored = update_attached_file($post_id, $restored_file); |
|
509 |
||
510 |
$meta['file'] = _wp_relative_upload_path( $restored_file ); |
|
511 |
$meta['width'] = $data['width']; |
|
512 |
$meta['height'] = $data['height']; |
|
513 |
} |
|
514 |
||
515 |
foreach ( $default_sizes as $default_size ) { |
|
516 |
if ( isset($backup_sizes["$default_size-orig"]) ) { |
|
517 |
$data = $backup_sizes["$default_size-orig"]; |
|
518 |
if ( isset($meta['sizes'][$default_size]) && $meta['sizes'][$default_size]['file'] != $data['file'] ) { |
|
519 |
if ( defined('IMAGE_EDIT_OVERWRITE') && IMAGE_EDIT_OVERWRITE ) { |
|
520 |
// delete only if it's edited image |
|
521 |
if ( preg_match('/-e[0-9]{13}-/', $meta['sizes'][$default_size]['file']) ) { |
|
522 |
$delpath = apply_filters( 'wp_delete_file', path_join($parts['dirname'], $meta['sizes'][$default_size]['file']) ); |
|
523 |
@unlink($delpath); |
|
524 |
} |
|
525 |
} else { |
|
526 |
$backup_sizes["$default_size-{$suffix}"] = $meta['sizes'][$default_size]; |
|
527 |
} |
|
528 |
} |
|
529 |
||
530 |
$meta['sizes'][$default_size] = $data; |
|
531 |
} else { |
|
532 |
unset($meta['sizes'][$default_size]); |
|
533 |
} |
|
534 |
} |
|
535 |
||
536 |
if ( !wp_update_attachment_metadata($post_id, $meta) || !update_post_meta( $post_id, '_wp_attachment_backup_sizes', $backup_sizes) ) { |
|
537 |
$msg->error = __('Cannot save image metadata.'); |
|
538 |
return $msg; |
|
539 |
} |
|
540 |
||
541 |
if ( !$restored ) |
|
542 |
$msg->error = __('Image metadata is inconsistent.'); |
|
543 |
else |
|
544 |
$msg->msg = __('Image restored successfully.'); |
|
545 |
||
546 |
return $msg; |
|
547 |
} |
|
548 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
549 |
/** |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
550 |
* Saves image to post along with enqueued changes |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
551 |
* in $_REQUEST['history'] |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
552 |
* |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
553 |
* @param int $post_id |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
554 |
* @return \stdClass |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
555 |
*/ |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
556 |
function wp_save_image( $post_id ) { |
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
557 |
$return = new stdClass; |
136 | 558 |
$success = $delete = $scaled = $nocrop = false; |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
559 |
$post = get_post( $post_id ); |
136 | 560 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
561 |
$img = wp_get_image_editor( _load_image_to_edit_path( $post_id, 'full' ) ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
562 |
if ( is_wp_error( $img ) ) { |
136 | 563 |
$return->error = esc_js( __('Unable to create new image.') ); |
564 |
return $return; |
|
565 |
} |
|
566 |
||
567 |
$fwidth = !empty($_REQUEST['fwidth']) ? intval($_REQUEST['fwidth']) : 0; |
|
568 |
$fheight = !empty($_REQUEST['fheight']) ? intval($_REQUEST['fheight']) : 0; |
|
569 |
$target = !empty($_REQUEST['target']) ? preg_replace('/[^a-z0-9_-]+/i', '', $_REQUEST['target']) : ''; |
|
570 |
$scale = !empty($_REQUEST['do']) && 'scale' == $_REQUEST['do']; |
|
571 |
||
572 |
if ( $scale && $fwidth > 0 && $fheight > 0 ) { |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
573 |
$size = $img->get_size(); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
574 |
$sX = $size['width']; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
575 |
$sY = $size['height']; |
136 | 576 |
|
577 |
// check if it has roughly the same w / h ratio |
|
578 |
$diff = round($sX / $sY, 2) - round($fwidth / $fheight, 2); |
|
579 |
if ( -0.1 < $diff && $diff < 0.1 ) { |
|
580 |
// scale the full size image |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
581 |
if ( $img->resize( $fwidth, $fheight ) ) |
136 | 582 |
$scaled = true; |
583 |
} |
|
584 |
||
585 |
if ( !$scaled ) { |
|
586 |
$return->error = esc_js( __('Error while saving the scaled image. Please reload the page and try again.') ); |
|
587 |
return $return; |
|
588 |
} |
|
589 |
} elseif ( !empty($_REQUEST['history']) ) { |
|
590 |
$changes = json_decode( stripslashes($_REQUEST['history']) ); |
|
591 |
if ( $changes ) |
|
592 |
$img = image_edit_apply_changes($img, $changes); |
|
593 |
} else { |
|
594 |
$return->error = esc_js( __('Nothing to save, the image has not changed.') ); |
|
595 |
return $return; |
|
596 |
} |
|
597 |
||
598 |
$meta = wp_get_attachment_metadata($post_id); |
|
599 |
$backup_sizes = get_post_meta( $post->ID, '_wp_attachment_backup_sizes', true ); |
|
600 |
||
601 |
if ( !is_array($meta) ) { |
|
602 |
$return->error = esc_js( __('Image data does not exist. Please re-upload the image.') ); |
|
603 |
return $return; |
|
604 |
} |
|
605 |
||
606 |
if ( !is_array($backup_sizes) ) |
|
607 |
$backup_sizes = array(); |
|
608 |
||
609 |
// generate new filename |
|
610 |
$path = get_attached_file($post_id); |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
611 |
$path_parts = pathinfo( $path ); |
136 | 612 |
$filename = $path_parts['filename']; |
613 |
$suffix = time() . rand(100, 999); |
|
614 |
||
615 |
if ( defined('IMAGE_EDIT_OVERWRITE') && IMAGE_EDIT_OVERWRITE && |
|
616 |
isset($backup_sizes['full-orig']) && $backup_sizes['full-orig']['file'] != $path_parts['basename'] ) { |
|
617 |
||
618 |
if ( 'thumbnail' == $target ) |
|
619 |
$new_path = "{$path_parts['dirname']}/{$filename}-temp.{$path_parts['extension']}"; |
|
620 |
else |
|
621 |
$new_path = $path; |
|
622 |
} else { |
|
623 |
while( true ) { |
|
624 |
$filename = preg_replace( '/-e([0-9]+)$/', '', $filename ); |
|
625 |
$filename .= "-e{$suffix}"; |
|
626 |
$new_filename = "{$filename}.{$path_parts['extension']}"; |
|
627 |
$new_path = "{$path_parts['dirname']}/$new_filename"; |
|
628 |
if ( file_exists($new_path) ) |
|
629 |
$suffix++; |
|
630 |
else |
|
631 |
break; |
|
632 |
} |
|
633 |
} |
|
634 |
||
635 |
// save the full-size file, also needed to create sub-sizes |
|
636 |
if ( !wp_save_image_file($new_path, $img, $post->post_mime_type, $post_id) ) { |
|
637 |
$return->error = esc_js( __('Unable to save the image.') ); |
|
638 |
return $return; |
|
639 |
} |
|
640 |
||
641 |
if ( 'nothumb' == $target || 'all' == $target || 'full' == $target || $scaled ) { |
|
642 |
$tag = false; |
|
643 |
if ( isset($backup_sizes['full-orig']) ) { |
|
644 |
if ( ( !defined('IMAGE_EDIT_OVERWRITE') || !IMAGE_EDIT_OVERWRITE ) && $backup_sizes['full-orig']['file'] != $path_parts['basename'] ) |
|
645 |
$tag = "full-$suffix"; |
|
646 |
} else { |
|
647 |
$tag = 'full-orig'; |
|
648 |
} |
|
649 |
||
650 |
if ( $tag ) |
|
651 |
$backup_sizes[$tag] = array('width' => $meta['width'], 'height' => $meta['height'], 'file' => $path_parts['basename']); |
|
652 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
653 |
$success = update_attached_file( $post_id, $new_path ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
654 |
|
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
655 |
$meta['file'] = _wp_relative_upload_path( $new_path ); |
136 | 656 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
657 |
$size = $img->get_size(); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
658 |
$meta['width'] = $size['width']; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
659 |
$meta['height'] = $size['height']; |
136 | 660 |
|
661 |
if ( $success && ('nothumb' == $target || 'all' == $target) ) { |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
662 |
$sizes = get_intermediate_image_sizes(); |
136 | 663 |
if ( 'nothumb' == $target ) |
664 |
$sizes = array_diff( $sizes, array('thumbnail') ); |
|
665 |
} |
|
666 |
||
667 |
$return->fw = $meta['width']; |
|
668 |
$return->fh = $meta['height']; |
|
669 |
} elseif ( 'thumbnail' == $target ) { |
|
670 |
$sizes = array( 'thumbnail' ); |
|
671 |
$success = $delete = $nocrop = true; |
|
672 |
} |
|
673 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
674 |
if ( isset( $sizes ) ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
675 |
$_sizes = array(); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
676 |
|
136 | 677 |
foreach ( $sizes as $size ) { |
678 |
$tag = false; |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
679 |
if ( isset( $meta['sizes'][$size] ) ) { |
136 | 680 |
if ( isset($backup_sizes["$size-orig"]) ) { |
681 |
if ( ( !defined('IMAGE_EDIT_OVERWRITE') || !IMAGE_EDIT_OVERWRITE ) && $backup_sizes["$size-orig"]['file'] != $meta['sizes'][$size]['file'] ) |
|
682 |
$tag = "$size-$suffix"; |
|
683 |
} else { |
|
684 |
$tag = "$size-orig"; |
|
685 |
} |
|
686 |
||
687 |
if ( $tag ) |
|
688 |
$backup_sizes[$tag] = $meta['sizes'][$size]; |
|
689 |
} |
|
690 |
||
691 |
$crop = $nocrop ? false : get_option("{$size}_crop"); |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
692 |
$_sizes[ $size ] = array( 'width' => get_option("{$size}_size_w"), 'height' => get_option("{$size}_size_h"), 'crop' => $crop ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
693 |
} |
136 | 694 |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
695 |
$meta['sizes'] = $img->multi_resize( $_sizes ); |
136 | 696 |
} |
697 |
||
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
698 |
unset( $img ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
699 |
|
136 | 700 |
if ( $success ) { |
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
701 |
wp_update_attachment_metadata( $post_id, $meta ); |
136 | 702 |
update_post_meta( $post_id, '_wp_attachment_backup_sizes', $backup_sizes); |
703 |
||
704 |
if ( $target == 'thumbnail' || $target == 'all' || $target == 'full' ) { |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
705 |
// Check if it's an image edit from attachment edit screen |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
706 |
if ( ! empty( $_REQUEST['context'] ) && 'edit-attachment' == $_REQUEST['context'] ) { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
707 |
$thumb_url = wp_get_attachment_image_src( $post_id, array( 900, 600 ), true ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
708 |
$return->thumbnail = $thumb_url[0]; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
709 |
} else { |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
710 |
$file_url = wp_get_attachment_url($post_id); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
711 |
if ( $thumb = $meta['sizes']['thumbnail'] ) |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
712 |
$return->thumbnail = path_join( dirname($file_url), $thumb['file'] ); |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
713 |
else |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
714 |
$return->thumbnail = "$file_url?w=128&h=128"; |
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
715 |
} |
136 | 716 |
} |
717 |
} else { |
|
718 |
$delete = true; |
|
719 |
} |
|
720 |
||
721 |
if ( $delete ) { |
|
722 |
$delpath = apply_filters('wp_delete_file', $new_path); |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
723 |
@unlink( $delpath ); |
136 | 724 |
} |
725 |
||
726 |
$return->msg = esc_js( __('Image saved') ); |
|
727 |
return $return; |
|
728 |
} |