TYPO3 CMS  TYPO3_8-7
TextfieldViewHelper.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
32 {
36  protected $tagName = 'input';
37 
44  public function initializeArguments()
45  {
46  parent::initializeArguments();
47  $this->registerTagAttribute('autofocus', 'string', 'Specifies that an input should automatically get focus when the page loads');
48  $this->registerTagAttribute('disabled', 'string', 'Specifies that the input element should be disabled when the page loads');
49  $this->registerTagAttribute('maxlength', 'int', 'The maxlength attribute of the input field (will not be validated)');
50  $this->registerTagAttribute('readonly', 'string', 'The readonly attribute of the input field');
51  $this->registerTagAttribute('size', 'int', 'The size of the input field');
52  $this->registerTagAttribute('placeholder', 'string', 'The placeholder of the textfield');
53  $this->registerTagAttribute('pattern', 'string', 'HTML5 validation pattern');
54  $this->registerArgument('errorClass', 'string', 'CSS class to set if there are errors for this view helper', false, 'f3-form-error');
56  $this->registerArgument('required', 'bool', 'If the field is required or not', false, false);
57  $this->registerArgument('type', 'string', 'The field type, e.g. "text", "email", "url" etc.', false, 'text');
58  }
59 
66  public function render()
67  {
68  $required = $this->arguments['required'];
69  $type = $this->arguments['type'];
70 
71  $name = $this->getName();
73  $this->setRespectSubmittedDataValue(true);
74 
75  $this->tag->addAttribute('type', $type);
76  $this->tag->addAttribute('name', $name);
77 
78  $value = $this->getValueAttribute();
79 
80  if ($value !== null) {
81  $this->tag->addAttribute('value', $value);
82  }
83 
84  if ($required !== false) {
85  $this->tag->addAttribute('required', 'required');
86  }
87 
89  $this->setErrorClassAttribute();
90 
91  return $this->tag->render();
92  }
93 }
registerTagAttribute($name, $type, $description, $required=false, $default=null)