Changeset 51518 for trunk/src/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 07/30/2021 07:34:39 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-setting.php
r49946 r51518 395 395 * @since 3.4.0 396 396 * 397 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.397 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 398 398 */ 399 399 do_action( "customize_preview_{$this->id}", $this ); … … 407 407 * @since 4.1.0 408 408 * 409 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.409 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 410 410 */ 411 411 do_action( "customize_preview_{$this->type}", $this ); … … 534 534 * @since 3.4.0 535 535 * 536 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.536 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 537 537 */ 538 538 do_action( "customize_save_{$id_base}", $this ); … … 570 570 * @since 3.4.0 571 571 * 572 * @param mixed $value Value of the setting.573 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.572 * @param mixed $value Value of the setting. 573 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 574 574 */ 575 575 return apply_filters( "customize_sanitize_{$this->id}", $value, $this ); … … 698 698 * @since 3.4.0 699 699 * 700 * @param mixed $value Value of the setting.701 * @param WP_Customize_Setting $ thisWP_Customize_Setting instance.700 * @param mixed $value Value of the setting. 701 * @param WP_Customize_Setting $setting WP_Customize_Setting instance. 702 702 */ 703 703 do_action( "customize_update_{$this->type}", $value, $this );
Note: See TracChangeset
for help on using the changeset viewer.