CakeFest 2024: The Official CakePHP Conference

Control Group (Arrangement)

(UI 0.9.9)

Einführung

A Group is a titled container for child controls

Klassenbeschreibung

class UI\Controls\Group extends UI\Control {
/* Eigenschaften */
protected $controls;
/* Constructor */
public __construct(string $title)
/* Methoden */
public append(UI\Control $control)
public getTitle(): string
public hasMargin(): bool
public setMargin(bool $margin)
public setTitle(string $title)
/* Geerbte Methoden */
}

Eigenschaften

controls

Contains controls, should not be manipulated directly

Inhaltsverzeichnis

add a note

User Contributed Notes

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