true, 'autofocus' => true, 'disabled' => true, 'form' => true, 'formaction' => true, 'formenctype' => true, 'formmethod' => true, 'formnovalidate' => true, 'formtarget' => true, 'type' => true, 'value' => true, ); /** * Translatable attributes * * @var array */ protected $translatableAttributes = array( 'value' => true ); /** * Determine input type to use * * @param ElementInterface $element * @throws Exception\DomainException * @return string */ protected function getType(ElementInterface $element) { return 'submit'; } }