- Timestamp:
- 05/20/2023 10:17:57 AM (17 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/lib/image-edit.js
r55044 r55843 436 436 * @return {boolean|void} Executes a post request that refreshes the page 437 437 * when the action is performed. 438 * Returns false if a invalid action is given,438 * Returns false if an invalid action is given, 439 439 * or when the action cannot be performed. 440 440 */ -
trunk/src/js/_enqueues/wp/customize/base.js
r50547 r55843 392 392 * Add an item to the collection. 393 393 * 394 * @param {string|wp.customize.Class} item - The item instance to add, or the ID for the instance to add. When an ID string is supplied, then itemObject must be provided. 395 * @param {wp.customize.Class} [itemObject] - The item instance when the first argument is a ID string. 394 * @param {string|wp.customize.Class} item - The item instance to add, or the ID for the instance to add. 395 * When an ID string is supplied, then itemObject must be provided. 396 * @param {wp.customize.Class} [itemObject] - The item instance when the first argument is an ID string. 396 397 * @return {wp.customize.Class} The new item's instance, or an existing instance if already added. 397 398 */ -
trunk/src/wp-includes/media.php
r55827 r55843 3805 3805 * 3806 3806 * @param resource|GdImage|false $image A value to check the type for. 3807 * @return bool True if $image is either a GD image resource orGdImage instance,3807 * @return bool True if `$image` is either a GD image resource or a GdImage instance, 3808 3808 * false otherwise. 3809 3809 */ … … 3812 3812 || is_resource( $image ) && 'gd' === get_resource_type( $image ) 3813 3813 ) { 3814 3815 3814 return true; 3816 3815 } … … 3820 3819 3821 3820 /** 3822 * Creates new GD image resource with transparency support.3821 * Creates a new GD image resource with transparency support. 3823 3822 * 3824 3823 * @todo Deprecate if possible.
Note: See TracChangeset
for help on using the changeset viewer.