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

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

Produce HTML output for this password control.
public get ( Theme $theme ) : string
$theme Theme The theme to use to render this control
Результат string HTML for this control in the form
    public function get(Theme $theme)
    {
        $this->vars['value'] = $this->value == '' ? '' : substr(md5($this->value), 0, 8);
        return parent::get($theme);
    }
FormControlPassword