TextareaField.php 451 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Core\Form;
  3. /*
  4. * Generador de textareas para formularios.
  5. */
  6. class TextareaField extends BaseField
  7. {
  8. public function renderInput(): string
  9. {
  10. return sprintf('<textarea id="%s" name="%s" aria-invalid="%s">%s</textarea>',
  11. $this->attribute,
  12. $this->attribute,
  13. $this->model->hasError($this->attribute) ? 'true' : '',
  14. $this->model->{$this->attribute},
  15. );
  16. }
  17. }