Habari\FormControlLabel::get PHP Метод

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

Produce HTML output for all this fieldset and all contained controls
public get ( Theme $theme ) : string
$theme Theme
Результат string HTML that will render this control in the form
    function get(Theme $theme)
    {
        $this->vars['label'] = $this->label;
        $this->properties['for'] = reset($this->controls)->get_visualizer();
        return parent::get($theme);
    }