TYPO3 CMS  TYPO3_8-7
TextareaViewHelper.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 
33 {
37  protected $tagName = 'textarea';
38 
44  public function initializeArguments()
45  {
46  parent::initializeArguments();
47  $this->registerTagAttribute('autofocus', 'string', 'Specifies that a text area should automatically get focus when the page loads');
48  $this->registerTagAttribute('rows', 'int', 'The number of rows of a text area');
49  $this->registerTagAttribute('cols', 'int', 'The number of columns of a text area');
50  $this->registerTagAttribute('disabled', 'string', 'Specifies that the input element should be disabled when the page loads');
51  $this->registerTagAttribute('placeholder', 'string', 'The placeholder of the textarea');
52  $this->registerArgument('errorClass', 'string', 'CSS class to set if there are errors for this view helper', false, 'f3-form-error');
54  }
55 
62  public function render()
63  {
64  $name = $this->getName();
66  $this->setRespectSubmittedDataValue(true);
67 
68  $this->tag->forceClosingTag(true);
69  $this->tag->addAttribute('name', $name);
70  $this->tag->setContent(htmlspecialchars($this->getValueAttribute()));
71 
73  $this->setErrorClassAttribute();
74 
75  return $this->tag->render();
76  }
77 }
registerTagAttribute($name, $type, $description, $required=false, $default=null)