PHP Класс WPDKUIControlsLayout

## Getting started In order to display a controls layout you need to define a simple Controls Layout Array (CLA) and to instance the WPDKUIControlsLayout class: $cla = array( 'Fieldset Legend Group' => array( 'Subtitle', // Optional subtitle array( array(...), array(...) ), // Row of items array(...), // New row array(...) // Items ); ); $layout = new WPDKUIControlsLayout( $cla ); $layout->display();
Автор: =undo= ([email protected])
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( array $cla ) Create an instance of WPDKUIControlsLayout class
display ( ) Display the controls layout
html ( ) : string Return the HTML markup pf controls layout array
init ( array $cla ) Return an instance of WPDKUIControlsLayout class
item ( array $item ) : string Return the HTML markup for a single item array

Приватные методы

Метод Описание
_processItem ( array $item ) Processing a single item in CLA format
_processRows ( array $rows ) Processing a single row within one or more items (controls array)
container ( array $item ) : string Return a container

Описание методов

__construct() публичный Метод

Create an instance of WPDKUIControlsLayout class
public __construct ( array $cla )
$cla array Controls Layout array

display() публичный Метод

Display the controls layout
public display ( )

html() публичный Метод

Return the HTML markup pf controls layout array
public html ( ) : string
Результат string

init() публичный статический Метод

Return an instance of WPDKUIControlsLayout class
С версии: 1.4.8
public static init ( array $cla )
$cla array Controls Layout array

item() публичный статический Метод

Return the HTML markup for a single item array
С версии: 1.0.0.b4
public static item ( array $item ) : string
$item array Single item to process
Результат string