Changeset 37342 for trunk/src/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 05/02/2016 03:59:56 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-setting.php
r37166 r37342 339 339 340 340 /** 341 * Fires when the {@see WP_Customize_Setting::preview()}method is called for settings341 * Fires when the WP_Customize_Setting::preview() method is called for settings 342 342 * not handled as theme_mods or options. 343 343 * … … 346 346 * @since 3.4.0 347 347 * 348 * @param WP_Customize_Setting $this {@see WP_Customize_Setting}instance.348 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 349 349 */ 350 350 do_action( "customize_preview_{$this->id}", $this ); 351 351 352 352 /** 353 * Fires when the {@see WP_Customize_Setting::preview()}method is called for settings353 * Fires when the WP_Customize_Setting::preview() method is called for settings 354 354 * not handled as theme_mods or options. 355 355 * … … 358 358 * @since 4.1.0 359 359 * 360 * @param WP_Customize_Setting $this {@see WP_Customize_Setting}instance.360 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 361 361 */ 362 362 do_action( "customize_preview_{$this->type}", $this ); … … 482 482 * @since 3.4.0 483 483 * 484 * @param WP_Customize_Setting $this {@see WP_Customize_Setting}instance.484 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 485 485 */ 486 486 do_action( 'customize_save_' . $this->id_data[ 'base' ], $this ); … … 598 598 } else { 599 599 /** 600 * Fires when the {@see WP_Customize_Setting::update()}method is called for settings600 * Fires when the WP_Customize_Setting::update() method is called for settings 601 601 * not handled as theme_mods or options. 602 602 * … … 688 688 * 689 689 * @param mixed $value The setting value. 690 * @param WP_Customize_Setting $this {@see WP_Customize_Setting}instance.690 * @param WP_Customize_Setting $this WP_Customize_Setting instance. 691 691 */ 692 692 $value = apply_filters( "customize_sanitize_js_{$this->id}", $this->value(), $this );
Note: See TracChangeset
for help on using the changeset viewer.