Changeset 32568 for trunk/src/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 05/24/2015 05:39:47 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r32535 r32568 900 900 * 901 901 * @param string $id Customize Setting ID. 902 * @return WP_Customize_Setting| nullThe setting, if set.902 * @return WP_Customize_Setting|void The setting, if set. 903 903 */ 904 904 public function get_setting( $id ) { … … 945 945 * 946 946 * @param string $id Panel ID to get. 947 * @return WP_Customize_Panel| nullRequested panel instance, if set.947 * @return WP_Customize_Panel|void Requested panel instance, if set. 948 948 */ 949 949 public function get_panel( $id ) { … … 988 988 * 989 989 * @param string $id Section ID. 990 * @return WP_Customize_Section| nullThe section, if set.990 * @return WP_Customize_Section|void The section, if set. 991 991 */ 992 992 public function get_section( $id ) { … … 1030 1030 * 1031 1031 * @param string $id ID of the control. 1032 * @return WP_Customize_Control| nullThe control object, if set.1032 * @return WP_Customize_Control|void The control object, if set. 1033 1033 */ 1034 1034 public function get_control( $id ) { … … 1533 1533 * Sanitizes a hex color. 1534 1534 * 1535 * Returns either '', a 3 or 6 digit hex color (with #), or n ull.1535 * Returns either '', a 3 or 6 digit hex color (with #), or nothing. 1536 1536 * For sanitizing values without a #, see sanitize_hex_color_no_hash(). 1537 1537 * … … 1539 1539 * 1540 1540 * @param string $color 1541 * @return string| null1541 * @return string|void 1542 1542 */ 1543 1543 function sanitize_hex_color( $color ) {
Note: See TracChangeset
for help on using the changeset viewer.