PHP Class WPDKUIControlLabel
$item = array(
'type' => WPDKUIControlType::LABEL,
'id' => 'id',
'for' => '',
'label' => 'Label Text',
'value' => 'Content to append',
'attrs' => array(),
'data' => array(),
'class' => array(),
'style' => '',
'title' => 'This title is a tooltip',
'append' => '',
'prepend' => '',
);
Mostrar archivo
Open project: wpxtreme/wpdk
Public Methods
Method |
Description |
|
__construct ( array $item ) : WPDKUIControlLabel |
Create an instance of WPDKUIControlLabel class |
|
draw ( ) |
Dawing alert control |
|
Method Details
__construct()
public method
Create an instance of WPDKUIControlLabel class
public __construct ( array $item ) : WPDKUIControlLabel |
$item |
array |
Key value pairs with control info |
return |
WPDKUIControlLabel |
|