Changeset 38121 for trunk/src/wp-includes/class-wp-widget-factory.php
- Timestamp:
- 07/20/2016 04:56:21 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-widget-factory.php
r37333 r38121 54 54 * @since 4.6.0 55 55 * @access private 56 * @var array 57 * 56 58 * @see WP_Widget_Factory::hash_object() 57 *58 * @var array59 59 */ 60 60 private $hashed_class_counts = array(); 61 61 62 62 /** 63 * Hash an object, doing fallback of `spl_object_hash()` if not available.63 * Hashes an object, doing fallback of `spl_object_hash()` if not available. 64 64 * 65 65 * This can be eliminated in favor of straight spl_object_hash() when 5.3 … … 94 94 * 95 95 * @since 2.8.0 96 * @since 4.6.0 The `$widget` param can also be an instance object of `WP_Widget` instead of just a `WP_Widget` subclass name. 96 * @since 4.6.0 Updated the `$widget` parameter to also accept a WP_Widget instance object 97 * instead of simply a `WP_Widget` subclass name. 97 98 * @access public 98 99 * … … 111 112 * 112 113 * @since 2.8.0 113 * @since 4.6.0 The `$widget` param can also be an instance object of `WP_Widget` instead of just a `WP_Widget` subclass name. 114 * @since 4.6.0 Updated the `$widget` parameter to also accept a WP_Widget instance object 115 * instead of simply a `WP_Widget` subclass name. 114 116 * @access public 115 117 *
Note: See TracChangeset
for help on using the changeset viewer.