Habari\FormControlSelect::get PHP Method

get() public method

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