TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
▼
TYPO3 CMS
TYPO3 CMS
Test List
Todo List
Deprecated List
►
Namespace Members
►
Classes
▼
Files
►
File List
►
File Members
►
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
TextareaElement.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Form\Domain\Model\Element
;
3
22
class
TextareaElement
extends
\TYPO3\CMS\Form\Domain\Model\Element\AbstractElement
{
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
73
public
function
checkFilterAndSetIncomingDataFromRequest
() {
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
}
TYPO3\CMS\Form\Domain\Model\Element\TextareaElement
Definition:
TextareaElement.php:22
TYPO3\CMS\Form\Domain\Model\Element\AbstractElement\$data
$data
Definition:
AbstractElement.php:99
TYPO3\CMS\Form\Domain\Model\Element\TextareaElement\$mandatoryAttributes
$mandatoryAttributes
Definition:
TextareaElement.php:50
TYPO3\CMS\Form\Domain\Model\Element\AbstractElement
Definition:
AbstractElement.php:22
TYPO3\CMS\Form\Domain\Model\Element\TextareaElement\getData
getData()
Definition:
TextareaElement.php:61
TYPO3\CMS\Form\Domain\Model\Element\AbstractElement\getName
getName()
Definition:
AbstractElement.php:218
TYPO3\CMS\Form\Domain\Model\Element\TextareaElement\checkFilterAndSetIncomingDataFromRequest
checkFilterAndSetIncomingDataFromRequest()
Definition:
TextareaElement.php:73
TYPO3\CMS\Form\Domain\Model\Element\AbstractElement\$value
$value
Definition:
AbstractElement.php:91
TYPO3\CMS\Form\Domain\Model\Element
Definition:
AbstractElement.php:2
TYPO3\CMS\Form\Domain\Model\Element\TextareaElement\$allowedAttributes
$allowedAttributes
Definition:
TextareaElement.php:29
typo3
sysext
form
Classes
Domain
Model
Element
TextareaElement.php
Generated on Wed Aug 7 2019 09:52:27 for TYPO3 CMS by
1.8.13