Make WordPress Core

Changeset 44498


Ignore:
Timestamp:
01/09/2019 05:48:33 AM (8 years ago)
Author:
pento
Message:

Docs: Add docblocks to the members of WP_Widget_Form_Customize_Control.

Props subrataemfluence.
Fixes #44420.

File:
1 edited

Legend:

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

    r42343 r44498  
    1616 */
    1717class WP_Widget_Form_Customize_Control extends WP_Customize_Control {
     18        /**
     19         * Customize control type.
     20         *
     21         * @since 3.9.0
     22         * @var string
     23         */
    1824        public $type = 'widget_form';
     25
     26        /**
     27         * Widget ID.
     28         *
     29         * @since 3.9.0
     30         * @var string
     31         */
    1932        public $widget_id;
     33
     34        /**
     35         * Widget ID base.
     36         *
     37         * @since 3.9.0
     38         * @var string
     39         */
    2040        public $widget_id_base;
     41
     42        /**
     43         * Sidebar ID.
     44         *
     45         * @since 3.9.0
     46         * @var string
     47         */
    2148        public $sidebar_id;
     49
     50        /**
     51         * Widget status.
     52         *
     53         * @since 3.9.0
     54         * @var bool True if new, false otherwise. Default false.
     55         */
    2256        public $is_new = false;
     57
     58        /**
     59         * Widget width.
     60         *
     61         * @since 3.9.0
     62         * @var int
     63         */
    2364        public $width;
     65
     66        /**
     67         * Widget height.
     68         *
     69         * @since 3.9.0
     70         * @var int
     71         */
    2472        public $height;
     73
     74        /**
     75         * Widget mode.
     76         *
     77         * @since 3.9.0
     78         * @var bool True if wide, false otherwise. Default false.
     79         */
    2580        public $is_wide = false;
    2681
Note: See TracChangeset for help on using the changeset viewer.