Make WordPress Core


Ignore:
Timestamp:
02/25/2015 08:17:25 AM (11 years ago)
Author:
DrewAPicture
Message:

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

  • Adds a file header separate from the WP_Customize_Setting class block
  • Fixes formatting for the WP_Customize_Setting, WP_Customize_Filter_Setting, WP_Customize_Header_Image_Setting, and WP_Customize_Background_Image_Setting class DocBlocks.

See #31446.

File:
1 edited

Legend:

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

    r31370 r31543  
    11<?php
    22/**
    3  * Customize Setting Class.
    4  *
    5  * Handles saving and sanitizing of settings.
     3 * WordPress Customize Setting classes
    64 *
    75 * @package WordPress
    86 * @subpackage Customize
    97 * @since 3.4.0
     8 */
     9
     10/**
     11 * Customize Setting class.
     12 *
     13 * Handles saving and sanitizing of settings.
     14 *
     15 * @since 3.4.0
     16 *
     17 * @see WP_Customize_Manager
    1018 */
    1119class WP_Customize_Setting {
     
    501509 * Results should be properly handled using another setting or callback.
    502510 *
    503  * @package WordPress
    504  * @subpackage Customize
    505511 * @since 3.4.0
     512 *
     513 * @see WP_Customize_Setting
    506514 */
    507515class WP_Customize_Filter_Setting extends WP_Customize_Setting {
     
    518526 * Results should be properly handled using another setting or callback.
    519527 *
    520  * @package WordPress
    521  * @subpackage Customize
    522528 * @since 3.4.0
     529 *
     530 * @see WP_Customize_Setting
    523531 */
    524532final class WP_Customize_Header_Image_Setting extends WP_Customize_Setting {
     
    546554
    547555/**
    548  * Class WP_Customize_Background_Image_Setting
    549  *
    550  * @package WordPress
    551  * @subpackage Customize
     556 * Customizer Background Image Setting class.
     557 *
    552558 * @since 3.4.0
     559 *
     560 * @see WP_Customize_Setting
    553561 */
    554562final class WP_Customize_Background_Image_Setting extends WP_Customize_Setting {
Note: See TracChangeset for help on using the changeset viewer.