Make WordPress Core

Ticket #44420: 44420.diff

File 44420.diff, 1.3 KB (added by subrataemfluence, 8 years ago)
  • class-wp-widget-form-customize-control-new.php

    diff --git src/wp-includes/customize/class-wp-widget-form-customize-control-new.php b/class-wp-widget-form-customize-control-new.php
    index 01acdd6..260b417 100755
    old new  
    1515 * @see WP_Customize_Control
    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
    2782        /**