PHP Class WPDKUIControlTextarea
$item = array(
'type' => WPDKUIControlType::TEXTAREA,
'label' => 'Left label',
'id' => 'id',
'name' => 'name',
'value' => 'Inner text',
'attrs' => '',
'data' => '',
'class' => '',
'style' => '',
'cols' => '10',
'rows' => '4',
'title' => 'This title is a tooltip',
'prepend' => '',
'append' => '',
);
Mostrar archivo
Open project: wpxtreme/wpdk
Public Methods
Method |
Description |
|
__construct ( array $item ) : WPDKUIControlTextarea |
Create an instance of WPDKUIControlTextarea class |
|
draw ( ) |
Drawing control |
|
Method Details
__construct()
public method
Create an instance of WPDKUIControlTextarea class
public __construct ( array $item ) : WPDKUIControlTextarea |
$item |
array |
Key value pairs with control info |
return |
WPDKUIControlTextarea |
|