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
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
BackendModule.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Backend\Domain\Model\Module
;
3
22
class
BackendModule
{
23
27
protected
$title
=
''
;
28
32
protected
$name
=
''
;
33
37
protected
$icon
= array();
38
42
protected
$link
=
''
;
43
47
protected
$onClick
=
''
;
48
52
protected
$description
=
''
;
53
57
protected
$navigationComponentId
=
''
;
58
62
protected
$children
;
63
67
public
function
__construct
() {
68
$this->children = new \SplObjectStorage();
69
}
70
77
public
function
setChildren
(
$children
) {
78
$this->children =
$children
;
79
}
80
86
public
function
getChildren
() {
87
return
$this->children
;
88
}
89
96
public
function
addChild
(\
TYPO3
\CMS\Backend\Domain\Model\Module\
BackendModule
$child) {
97
$this->children->attach($child);
98
}
99
106
public
function
setIcon
(array
$icon
) {
107
$this->icon =
$icon
;
108
}
109
115
public
function
getIcon
() {
116
return
$this->icon
;
117
}
118
125
public
function
setName
(
$name
) {
126
$this->name =
$name
;
127
}
128
134
public
function
getName
() {
135
return
$this->name
;
136
}
137
144
public
function
setTitle
(
$title
) {
145
$this->title =
$title
;
146
}
147
153
public
function
getTitle
() {
154
return
$this->title
;
155
}
156
163
public
function
setLink
(
$link
) {
164
$this->link =
$link
;
165
}
166
172
public
function
getLink
() {
173
return
$this->link
;
174
}
175
182
public
function
setDescription
(
$description
) {
183
$this->description =
$description
;
184
}
185
191
public
function
getDescription
() {
192
return
$this->description
;
193
}
194
201
public
function
setNavigationComponentId
(
$navigationComponentId
) {
202
$this->navigationComponentId =
$navigationComponentId
;
203
}
204
210
public
function
getNavigationComponentId
() {
211
return
$this->navigationComponentId
;
212
}
213
220
public
function
setOnClick
(
$onClick
) {
221
$this->onClick =
$onClick
;
222
}
223
229
public
function
getOnClick
() {
230
return
$this->onClick
;
231
}
232
233
}
TYPO3
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getTitle
getTitle()
Definition:
BackendModule.php:153
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setOnClick
setOnClick($onClick)
Definition:
BackendModule.php:220
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\__construct
__construct()
Definition:
BackendModule.php:67
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setLink
setLink($link)
Definition:
BackendModule.php:163
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$link
$link
Definition:
BackendModule.php:42
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setChildren
setChildren($children)
Definition:
BackendModule.php:77
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$navigationComponentId
$navigationComponentId
Definition:
BackendModule.php:57
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getNavigationComponentId
getNavigationComponentId()
Definition:
BackendModule.php:210
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setIcon
setIcon(array $icon)
Definition:
BackendModule.php:106
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$icon
$icon
Definition:
BackendModule.php:37
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getChildren
getChildren()
Definition:
BackendModule.php:86
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$name
$name
Definition:
BackendModule.php:32
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getOnClick
getOnClick()
Definition:
BackendModule.php:229
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule
Definition:
BackendModule.php:22
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\addChild
addChild(\TYPO3\CMS\Backend\Domain\Model\Module\BackendModule $child)
Definition:
BackendModule.php:96
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$children
$children
Definition:
BackendModule.php:62
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getIcon
getIcon()
Definition:
BackendModule.php:115
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getName
getName()
Definition:
BackendModule.php:134
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$description
$description
Definition:
BackendModule.php:52
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$title
$title
Definition:
BackendModule.php:27
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\$onClick
$onClick
Definition:
BackendModule.php:47
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getDescription
getDescription()
Definition:
BackendModule.php:191
TYPO3\CMS\Backend\Domain\Model\Module
Definition:
BackendModule.php:2
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setNavigationComponentId
setNavigationComponentId($navigationComponentId)
Definition:
BackendModule.php:201
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setName
setName($name)
Definition:
BackendModule.php:125
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setDescription
setDescription($description)
Definition:
BackendModule.php:182
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\setTitle
setTitle($title)
Definition:
BackendModule.php:144
TYPO3\CMS\Backend\Domain\Model\Module\BackendModule\getLink
getLink()
Definition:
BackendModule.php:172
typo3
sysext
backend
Classes
Domain
Model
Module
BackendModule.php
Generated on Wed Aug 7 2019 09:52:18 for TYPO3 CMS by
1.8.13