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
AbstractPlainElement.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Form\Domain\Model\Element
;
3
22
class
AbstractPlainElement
extends
\TYPO3\CMS\Form\Domain\Model\Element\AbstractElement
{
23
27
protected
$elementType
= self::ELEMENT_TYPE_PLAIN;
28
34
protected
$allowedAttributes
= array();
35
41
protected
$mandatoryAttributes
= array();
42
46
protected
$properties
= array();
47
54
public
function
setProperties
(array
$properties
) {
55
$this->properties =
$properties
;
56
}
57
63
public
function
getData
() {
64
return
$this->
getContent
();
65
}
66
72
protected
function
getContent
() {
73
$content =
''
;
74
if
(isset($this->properties[
'content'
])) {
75
$content = $this->properties[
'content'
];
76
}
77
return
$content;
78
}
79
80
}
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\getData
getData()
Definition:
AbstractPlainElement.php:63
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\$elementType
$elementType
Definition:
AbstractPlainElement.php:27
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\$properties
$properties
Definition:
AbstractPlainElement.php:46
TYPO3\CMS\Form\Domain\Model\Element\AbstractElement
Definition:
AbstractElement.php:22
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement
Definition:
AbstractPlainElement.php:22
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\$allowedAttributes
$allowedAttributes
Definition:
AbstractPlainElement.php:34
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\$mandatoryAttributes
$mandatoryAttributes
Definition:
AbstractPlainElement.php:41
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\getContent
getContent()
Definition:
AbstractPlainElement.php:72
TYPO3\CMS\Form\Domain\Model\Element
Definition:
AbstractElement.php:2
TYPO3\CMS\Form\Domain\Model\Element\AbstractPlainElement\setProperties
setProperties(array $properties)
Definition:
AbstractPlainElement.php:54
typo3
sysext
form
Classes
Domain
Model
Element
AbstractPlainElement.php
Generated on Wed Aug 7 2019 09:52:27 for TYPO3 CMS by
1.8.13