CakeFest 2024: The Official CakePHP Conference

Control Group (Arrangement)

(UI 0.9.9)

Introducción

A Group is a titled container for child controls

Sinopsis de la Clase

class UI\Controls\Group extends UI\Control {
/* Propiedades */
protected $controls;
/* Constructor */
public __construct(string $title)
/* Métodos */
public append(UI\Control $control)
public getTitle(): string
public hasMargin(): bool
public setMargin(bool $margin)
public setTitle(string $title)
/* Métodos heredados */
}

Propiedades

controls

Contains controls, should not be manipulated directly

Tabla de contenidos

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top