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
QueueService.php
Go to the documentation of this file.
1
<?php
2
namespace
OliverHader\IrreTutorial\Service
;
3
20
class
QueueService
implements
\TYPO3\CMS\Core\SingletonInterface
{
21
25
protected
$calls
;
26
30
protected
$values
= array();
31
35
protected
$active
= FALSE;
36
40
public
function
set
(array
$calls
) {
41
$this->calls =
$calls
;
42
$this->active = TRUE;
43
}
44
48
public
function
get
() {
49
return
$this->calls
;
50
}
51
55
public
function
isActive
() {
56
return
$this->active
;
57
}
58
59
public
function
setActive
(
$active
= TRUE) {
60
$this->active = (bool)
$active
;
61
}
62
66
public
function
shift
() {
67
return
array_shift($this->calls);
68
}
69
74
public
function
addValue
($identifier, $value) {
75
$this->values[$identifier] = $value;
76
}
77
81
public
function
getValues
() {
82
return
$this->values
;
83
}
84
85
}
OliverHader\IrreTutorial\Service\QueueService\shift
shift()
Definition:
QueueService.php:66
OliverHader\IrreTutorial\Service\QueueService\addValue
addValue($identifier, $value)
Definition:
QueueService.php:74
OliverHader\IrreTutorial\Service\QueueService\setActive
setActive($active=TRUE)
Definition:
QueueService.php:59
OliverHader\IrreTutorial\Service\QueueService\$active
$active
Definition:
QueueService.php:35
OliverHader\IrreTutorial\Service\QueueService\$values
$values
Definition:
QueueService.php:30
OliverHader\IrreTutorial\Service\QueueService\getValues
getValues()
Definition:
QueueService.php:81
OliverHader\IrreTutorial\Service
Definition:
QueueService.php:2
TYPO3\CMS\Core\SingletonInterface
Definition:
SingletonInterface.php:22
OliverHader\IrreTutorial\Service\QueueService\$calls
$calls
Definition:
QueueService.php:25
OliverHader\IrreTutorial\Service\QueueService
Definition:
QueueService.php:20
OliverHader\IrreTutorial\Service\QueueService\isActive
isActive()
Definition:
QueueService.php:55
typo3
sysext
core
Tests
Functional
Fixtures
Extensions
irre_tutorial
Classes
Service
QueueService.php
Generated on Wed Aug 7 2019 09:52:23 for TYPO3 CMS by
1.8.13