TYPO3 CMS  TYPO3_6-2
TextareaElement.php
Go to the documentation of this file.
1 <?php
3 
23 
29  protected $allowedAttributes = array(
30  'accesskey' => '',
31  'class' => '',
32  'cols' => '40',
33  'dir' => '',
34  'disabled' => '',
35  'id' => '',
36  'lang' => '',
37  'name' => '',
38  'readonly' => '',
39  'rows' => '5',
40  'style' => '',
41  'tabindex' => '',
42  'title' => ''
43  );
44 
50  protected $mandatoryAttributes = array(
51  'name',
52  'id'
53  );
54 
61  public function getData() {
62  return $this->data;
63  }
64 
74  if ($this->requestHandler->has($this->getName())) {
75  $value = $this->requestHandler->getByMethod($this->getName());
76  $value = $this->filter->filter($value);
77  $this->data = $value;
78  }
79  return $this;
80  }
81 
82 }