Docs: Add docblocks to the members of WP_Widget_Form_Customize_Control
.
Props subrataemfluence. Fixes #44420. git-svn-id: https://develop.svn.wordpress.org/trunk@44498 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ae62335191
commit
943dcbbcef
@ -15,13 +15,68 @@
|
||||
* @see WP_Customize_Control
|
||||
*/
|
||||
class WP_Widget_Form_Customize_Control extends WP_Customize_Control {
|
||||
/**
|
||||
* Customize control type.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var string
|
||||
*/
|
||||
public $type = 'widget_form';
|
||||
|
||||
/**
|
||||
* Widget ID.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var string
|
||||
*/
|
||||
public $widget_id;
|
||||
|
||||
/**
|
||||
* Widget ID base.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var string
|
||||
*/
|
||||
public $widget_id_base;
|
||||
|
||||
/**
|
||||
* Sidebar ID.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var string
|
||||
*/
|
||||
public $sidebar_id;
|
||||
|
||||
/**
|
||||
* Widget status.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var bool True if new, false otherwise. Default false.
|
||||
*/
|
||||
public $is_new = false;
|
||||
|
||||
/**
|
||||
* Widget width.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
|
||||
/**
|
||||
* Widget height.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* Widget mode.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @var bool True if wide, false otherwise. Default false.
|
||||
*/
|
||||
public $is_wide = false;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user