Changeset 27433 for trunk/src/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 03/06/2014 02:10:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r27419 r27433 217 217 } 218 218 219 /** 220 * Fires once the Customizer theme preview has started. 221 * 222 * @since 3.4.0 223 * 224 * @param WP_Customize_Manager $this WP_Customize_Manager instance. 225 */ 219 226 do_action( 'start_previewing_theme', $this ); 220 227 } … … 247 254 } 248 255 256 /** 257 * Fires once the Customizer theme preview has stopped. 258 * 259 * @since 3.4.0 260 * 261 * @param WP_Customize_Manager $this WP_Customize_Manager instance. 262 */ 249 263 do_action( 'stop_previewing_theme', $this ); 250 264 } … … 311 325 */ 312 326 public function wp_loaded() { 327 328 /** 329 * Fires once WordPress has loaded, allowing scripts and styles to be initialized. 330 * 331 * @since 3.4.0 332 * 333 * @param WP_Customize_Manager $this WP_Customize_Manager instance. 334 */ 313 335 do_action( 'customize_register', $this ); 314 336 … … 376 398 } 377 399 400 /** 401 * Fires once the Customizer preview has initialized and JavaScript 402 * settings have been printed. 403 * 404 * @since 3.4.0 405 * 406 * @param WP_Customize_Manager $this WP_Customize_Manager instance. 407 */ 378 408 do_action( 'customize_preview_init', $this ); 379 409 } … … 542 572 } 543 573 574 /** 575 * Fires once the theme has switched in the Customizer, but before settings 576 * have been saved. 577 * 578 * @since 3.4.0 579 * 580 * @param WP_Customize_Manager $this WP_Customize_Manager instance. 581 */ 544 582 do_action( 'customize_save', $this ); 545 583 … … 548 586 } 549 587 588 /** 589 * Fires after Customize settings have been saved. 590 * 591 * @since 3.6.0 592 * 593 * @param WP_Customize_Manager $this WP_Customize_Manager instance. 594 */ 550 595 do_action( 'customize_save_after', $this ); 551 596
Note: See TracChangeset
for help on using the changeset viewer.