Habari\FormControlStatic::get PHP Method

get() public method

Produce HTML output for this static text control.
public get ( Theme $theme ) : string
$theme Theme The theme used to render this control
return string HTML that will render this control in the form
    public function get(Theme $theme)
    {
        $this->vars['static'] = $this->static;
        return parent::get($theme);
    }