Pinking shears.
git-svn-id: http://core.svn.wordpress.org/trunk@21381 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b779aff50a
commit
21d1ea5f85
|
@ -12,7 +12,7 @@ class WP_Customize_Control {
|
||||||
* @var WP_Customize_Manager
|
* @var WP_Customize_Manager
|
||||||
*/
|
*/
|
||||||
public $manager;
|
public $manager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @access public
|
* @access public
|
||||||
* @var string
|
* @var string
|
||||||
|
@ -40,19 +40,19 @@ class WP_Customize_Control {
|
||||||
* @var int
|
* @var int
|
||||||
*/
|
*/
|
||||||
public $priority = 10;
|
public $priority = 10;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @access public
|
* @access public
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $section = '';
|
public $section = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @access public
|
* @access public
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $label = '';
|
public $label = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @todo: Remove choices
|
* @todo: Remove choices
|
||||||
*
|
*
|
||||||
|
@ -197,7 +197,7 @@ class WP_Customize_Control {
|
||||||
<?php $this->render_content(); ?>
|
<?php $this->render_content(); ?>
|
||||||
</li><?php
|
</li><?php
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the data link parameter for a setting.
|
* Get the data link parameter for a setting.
|
||||||
*
|
*
|
||||||
|
@ -212,7 +212,7 @@ class WP_Customize_Control {
|
||||||
|
|
||||||
return 'data-customize-setting-link="' . esc_attr( $this->settings[ $setting_key ]->id ) . '"';
|
return 'data-customize-setting-link="' . esc_attr( $this->settings[ $setting_key ]->id ) . '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render the data link parameter for a setting
|
* Render the data link parameter for a setting
|
||||||
*
|
*
|
||||||
|
@ -321,7 +321,7 @@ class WP_Customize_Color_Control extends WP_Customize_Control {
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $type = 'color';
|
public $type = 'color';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @access public
|
* @access public
|
||||||
* @var array
|
* @var array
|
||||||
|
@ -410,7 +410,7 @@ class WP_Customize_Upload_Control extends WP_Customize_Control {
|
||||||
public function enqueue() {
|
public function enqueue() {
|
||||||
wp_enqueue_script( 'wp-plupload' );
|
wp_enqueue_script( 'wp-plupload' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Refresh the parameters passed to the JavaScript via JSON.
|
* Refresh the parameters passed to the JavaScript via JSON.
|
||||||
*
|
*
|
||||||
|
@ -539,7 +539,7 @@ class WP_Customize_Image_Control extends WP_Customize_Upload_Control {
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a tab to the control.
|
* Add a tab to the control.
|
||||||
*
|
*
|
||||||
|
@ -586,7 +586,7 @@ class WP_Customize_Image_Control extends WP_Customize_Upload_Control {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 3.4.0
|
* @since 3.4.0
|
||||||
*/
|
*/
|
||||||
|
@ -662,7 +662,7 @@ class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control {
|
||||||
foreach ( (array) $backgrounds as $background )
|
foreach ( (array) $backgrounds as $background )
|
||||||
$this->print_tab_image( esc_url_raw( $background->guid ) );
|
$this->print_tab_image( esc_url_raw( $background->guid ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 3.4.0
|
* @since 3.4.0
|
||||||
* @uses WP_Customize_Image_Control::print_tab_image()
|
* @uses WP_Customize_Image_Control::print_tab_image()
|
||||||
|
@ -737,7 +737,7 @@ class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
|
||||||
</a>
|
</a>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 3.4.0
|
* @since 3.4.0
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue