Changeset 21381 for trunk/wp-includes/class-wp-customize-control.php
- Timestamp:
- 08/01/2012 02:30:02 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-control.php
r21354 r21381 13 13 */ 14 14 public $manager; 15 15 16 16 /** 17 17 * @access public … … 41 41 */ 42 42 public $priority = 10; 43 43 44 44 /** 45 45 * @access public … … 47 47 */ 48 48 public $section = ''; 49 49 50 50 /** 51 51 * @access public … … 53 53 */ 54 54 public $label = ''; 55 55 56 56 /** 57 57 * @todo: Remove choices … … 198 198 </li><?php 199 199 } 200 200 201 201 /** 202 202 * Get the data link parameter for a setting. … … 213 213 return 'data-customize-setting-link="' . esc_attr( $this->settings[ $setting_key ]->id ) . '"'; 214 214 } 215 215 216 216 /** 217 217 * Render the data link parameter for a setting … … 322 322 */ 323 323 public $type = 'color'; 324 324 325 325 /** 326 326 * @access public … … 411 411 wp_enqueue_script( 'wp-plupload' ); 412 412 } 413 413 414 414 /** 415 415 * Refresh the parameters passed to the JavaScript via JSON. … … 540 540 <?php 541 541 } 542 542 543 543 /** 544 544 * Add a tab to the control. … … 587 587 } 588 588 } 589 589 590 590 /** 591 591 * @since 3.4.0 … … 663 663 $this->print_tab_image( esc_url_raw( $background->guid ) ); 664 664 } 665 665 666 666 /** 667 667 * @since 3.4.0 … … 738 738 <?php 739 739 } 740 740 741 741 /** 742 742 * @since 3.4.0
Note: See TracChangeset
for help on using the changeset viewer.