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

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

Produce HTML output for all this fieldset and all contained controls
public get ( Theme $theme ) : string
$theme Theme The theme used to render the controls
Результат string HTML that will render this control in the form
    function get(Theme $theme)
    {
        if (!isset($this->vars['content'])) {
            $this->vars['content'] = $this->get_contents($theme);
        }
        return parent::get($theme);
    }