Changeset 37488 for trunk/src/wp-admin/includes/image.php
- Timestamp:
- 05/22/2016 06:00:23 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image.php
r36970 r37488 108 108 109 109 /** 110 * Filter the image sizes automatically generated when uploading an image.110 * Filters the image sizes automatically generated when uploading an image. 111 111 * 112 112 * @since 2.9.0 … … 175 175 ); 176 176 /** 177 * Filter the parameters for the attachment thumbnail creation.177 * Filters the parameters for the attachment thumbnail creation. 178 178 * 179 179 * @since 3.9.0 … … 200 200 201 201 /** 202 * Filter the generated attachment meta data.202 * Filters the generated attachment meta data. 203 203 * 204 204 * @since 2.1.0 … … 338 338 339 339 /** 340 * Filter the image types to check for exif data.340 * Filters the image types to check for exif data. 341 341 * 342 342 * @since 2.5.0 … … 418 418 419 419 /** 420 * Filter the array of meta data read from an image's exif data.420 * Filters the array of meta data read from an image's exif data. 421 421 * 422 422 * @since 2.5.0 … … 466 466 467 467 /** 468 * Filter whether the current image is displayable in the browser.468 * Filters whether the current image is displayable in the browser. 469 469 * 470 470 * @since 2.5.0 … … 507 507 if ( is_resource($image) ) { 508 508 /** 509 * Filter the current image being loaded for editing.509 * Filters the current image being loaded for editing. 510 510 * 511 511 * @since 2.9.0 … … 543 543 if ( 'full' != $size && ( $data = image_get_intermediate_size( $attachment_id, $size ) ) ) { 544 544 /** 545 * Filter the path to the current image.545 * Filters the path to the current image. 546 546 * 547 547 * The filter is evaluated for all image sizes except 'full'. … … 557 557 } elseif ( function_exists( 'fopen' ) && function_exists( 'ini_get' ) && true == ini_get( 'allow_url_fopen' ) ) { 558 558 /** 559 * Filter the image URL if not in the local filesystem.559 * Filters the image URL if not in the local filesystem. 560 560 * 561 561 * The filter is only evaluated if fopen is enabled on the server. … … 571 571 572 572 /** 573 * Filter the returned path or URL of the current image.573 * Filters the returned path or URL of the current image. 574 574 * 575 575 * @since 2.9.0
Note: See TracChangeset
for help on using the changeset viewer.