Changeset 33220 for trunk/src/wp-includes/class-wp-customize-section.php
- Timestamp:
- 07/13/2015 08:48:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-section.php
r33078 r33220 317 317 * 318 318 * This function is only run for section types that have been registered with 319 * {@see WP_Customize_Manager::register_section_type()}.319 * WP_Customize_Manager::register_section_type(). 320 320 * 321 321 * @since 4.3.0 322 * @access public 323 * 324 * @see WP_Customize_Manager::render_template() 322 325 */ 323 326 public function print_template() { … … 333 336 * 334 337 * Class variables for this section class are available in the `data` JS object; 335 * export custom variables by overriding {@see WP_Customize_Section::json()}. 338 * export custom variables by overriding WP_Customize_Section::json(). 339 * 340 * @since 4.3.0 341 * @access protected 336 342 * 337 343 * @see WP_Customize_Section::print_template() 338 *339 * @since 4.3.0340 344 */ 341 345 protected function render_template() { … … 504 508 * 505 509 * @since 4.3.0 510 * 511 * @see WP_Customize_Section 506 512 */ 507 513 class WP_Customize_Nav_Menu_Section extends WP_Customize_Section { … … 511 517 * 512 518 * @since 4.3.0 513 *514 519 * @access public 515 520 * @var string … … 518 523 519 524 /** 520 * Get section param s for JS.525 * Get section parameters for JS. 521 526 * 522 527 * @since 4.3.0 523 * 524 * @return array 528 * @access public 529 * @return array Exported parameters. 525 530 */ 526 531 public function json() { … … 538 543 * 539 544 * @since 4.3.0 545 * 546 * @see WP_Customize_Section 540 547 */ 541 548 class WP_Customize_New_Menu_Section extends WP_Customize_Section { … … 545 552 * 546 553 * @since 4.3.0 547 *548 554 * @access public 549 555 * @var string … … 555 561 * 556 562 * @since 4.3.0 563 * @access protected 557 564 */ 558 565 protected function render() {
Note: See TracChangeset
for help on using the changeset viewer.