setType('text'); $this->setExtType('textfield'); } /** * Get the HTML * * @return mixed */ public function getHtml() { $this->addClass('input-text admin__control-text'); return parent::getHtml(); } /** * Get the attributes * * @return string[] */ public function getHtmlAttributes() { return [ 'type', 'title', 'class', 'style', 'onclick', 'onchange', 'onkeyup', 'disabled', 'readonly', 'maxlength', 'tabindex', 'placeholder', 'data-form-part', 'data-role', 'data-validation-params', 'data-action' ]; } }