Make WordPress Core


Ignore:
Timestamp:
02/25/2015 07:55:55 AM (10 years ago)
Author:
DrewAPicture
Message:

Add a missing file header and clean up class DocBlocks in wp-includes/class-wp-customize-control.php.

  • Adds a file header separate from the WP_Customize_Control class block
  • Fixes formatting for the WP_Customize_Control, WP_Customize_Color_Control, WP_Customize_Upload_Control, WP_Customize_Image_Control, WP_Customize_Background_Image_Control, WP_Customize_Theme_Control, WP_Customize_New_Theme_Control, WP_Widget_Area_Customize_Control, and WP_Widget_Form_Customize_Control class DocBlocks.
  • Adds a missing class DocBlock for WP_Customize_Header_Image_Control

See #31446.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-control.php

    r31533 r31539  
    11<?php
    22/**
    3  * Customize Control Class
     3 * WordPress Customize Control classes
    44 *
    55 * @package WordPress
    66 * @subpackage Customize
     7 * @since 3.4.0
     8 */
     9
     10/**
     11 * Customize Control class.
     12 *
    713 * @since 3.4.0
    814 */
     
    538544
    539545/**
    540  * Customize Color Control Class
    541  *
    542  * @package WordPress
    543  * @subpackage Customize
     546 * Customize Color Control class.
     547 *
    544548 * @since 3.4.0
     549 *
     550 * @see WP_Customize_Control
    545551 */
    546552class WP_Customize_Color_Control extends WP_Customize_Control {
     
    633639
    634640/**
    635  * Customize Upload Control Class
    636  *
    637  * @package WordPress
    638  * @subpackage Customize
     641 * Customize Upload Control class.
     642 *
    639643 * @since 3.4.0
     644 *
     645 * @see WP_Customize_Control
    640646 */
    641647class WP_Customize_Upload_Control extends WP_Customize_Control {
     
    804810
    805811/**
    806  * Customize Image Control Class
    807  *
    808  * @package WordPress
    809  * @subpackage Customize
     812 * Customize Image Control class.
     813 *
    810814 * @since 3.4.0
     815 *
     816 * @see WP_Customize_Upload_Control
    811817 */
    812818class WP_Customize_Image_Control extends WP_Customize_Upload_Control {
     
    873879
    874880/**
    875  * Customize Background Image Control Class
    876  *
    877  * @package WordPress
    878  * @subpackage Customize
     881 * Customize Background Image Control class.
     882 *
    879883 * @since 3.4.0
     884 *
     885 * @see WP_Customize_Image_Control
    880886 */
    881887class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control {
     
    913919}
    914920
     921/**
     922 * Customize Header Image Control class.
     923 *
     924 * @since 3.4.0
     925 *
     926 * @see WP_Customize_Image_Control
     927 */
    915928class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
    916929    public $type = 'header';
     
    11021115
    11031116/**
    1104  * Customize Theme Control Class
    1105  *
    1106  * @package WordPress
    1107  * @subpackage Customize
     1117 * Customize Theme Control class.
     1118 *
    11081119 * @since 4.2.0
     1120 *
     1121 * @see WP_Customize_Control
    11091122 */
    11101123class WP_Customize_Theme_Control extends WP_Customize_Control {
     
    11661179
    11671180/**
    1168  * Customize New Theme Control Class
    1169  *
    1170  * @package WordPress
    1171  * @subpackage Customize
     1181 * Customize New Theme Control class.
     1182 *
    11721183 * @since 4.2.0
     1184 *
     1185 * @see WP_Customize_Control
    11731186 */
    11741187class WP_Customize_New_Theme_Control extends WP_Customize_Control {
     
    11971210
    11981211/**
    1199  * Widget Area Customize Control Class
     1212 * Widget Area Customize Control class.
    12001213 *
    12011214 * @since 3.9.0
     1215 *
     1216 * @see WP_Customize_Control
    12021217 */
    12031218class WP_Widget_Area_Customize_Control extends WP_Customize_Control {
     
    12291244
    12301245/**
    1231  * Widget Form Customize Control Class
     1246 * Widget Form Customize Control class.
    12321247 *
    12331248 * @since 3.9.0
     1249 *
     1250 * @see WP_Customize_Control
    12341251 */
    12351252class WP_Widget_Form_Customize_Control extends WP_Customize_Control {
     
    12811298    }
    12821299}
    1283 
Note: See TracChangeset for help on using the changeset viewer.