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
Category.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Extbase\Domain\Model
;
3
21
class
Category
extends
\TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
22
27
protected
$title
=
''
;
28
32
protected
$description
=
''
;
33
37
protected
$icon
=
''
;
38
43
protected
$parent
= NULL;
44
51
public
function
getTitle
() {
52
return
$this->title
;
53
}
54
62
public
function
setTitle
(
$title
) {
63
$this->title =
$title
;
64
}
65
72
public
function
getDescription
() {
73
return
$this->description
;
74
}
75
83
public
function
setDescription
(
$description
) {
84
$this->description =
$description
;
85
}
86
93
public
function
getIcon
() {
94
return
$this->icon
;
95
}
96
104
public
function
setIcon
(
$icon
) {
105
$this->icon =
$icon
;
106
}
107
114
public
function
getParent
() {
115
if
($this->parent instanceof \
TYPO3
\CMS\Extbase\Persistence\Generic\LazyLoadingProxy) {
116
$this->parent->_loadRealInstance();
117
}
118
return
$this->parent
;
119
}
120
128
public
function
setParent
(\
TYPO3
\CMS\Extbase\Domain\Model\
Category
$parent
) {
129
$this->parent =
$parent
;
130
}
131
}
TYPO3
TYPO3\CMS\Extbase\Domain\Model
Definition:
AbstractFileCollection.php:2
TYPO3\CMS\Extbase\Domain\Model\Category
Definition:
Category.php:21
TYPO3\CMS\Extbase\Domain\Model\Category\getParent
getParent()
Definition:
Category.php:114
TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition:
AbstractEntity.php:20
TYPO3\CMS\Extbase\Domain\Model\Category\setIcon
setIcon($icon)
Definition:
Category.php:104
TYPO3\CMS\Extbase\Domain\Model\Category\getDescription
getDescription()
Definition:
Category.php:72
TYPO3\CMS\Extbase\Domain\Model\Category\getIcon
getIcon()
Definition:
Category.php:93
TYPO3\CMS\Extbase\Domain\Model\Category\setDescription
setDescription($description)
Definition:
Category.php:83
TYPO3\CMS\Extbase\Domain\Model\Category\$icon
$icon
Definition:
Category.php:37
TYPO3\CMS\Extbase\Domain\Model\Category\setTitle
setTitle($title)
Definition:
Category.php:62
TYPO3\CMS\Extbase\Domain\Model\Category\$description
$description
Definition:
Category.php:32
TYPO3\CMS\Extbase\Domain\Model\Category\$parent
$parent
Definition:
Category.php:43
TYPO3\CMS\Extbase\Domain\Model\Category\getTitle
getTitle()
Definition:
Category.php:51
TYPO3\CMS\Extbase\Domain\Model\Category\setParent
setParent(\TYPO3\CMS\Extbase\Domain\Model\Category $parent)
Definition:
Category.php:128
TYPO3\CMS\Extbase\Domain\Model\Category\$title
$title
Definition:
Category.php:27
typo3
sysext
extbase
Classes
Domain
Model
Category.php
Generated on Wed Aug 7 2019 09:52:24 for TYPO3 CMS by
1.8.13