ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
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
y
z
+
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
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilNotificationHandlerIterator.php
Go to the documentation of this file.
1
<?php
2
3
class
ilNotificationHandlerIterator
implements
Iterator
{
4
5
private
$items
= array();
6
private
$index
= 0;
7
8
public
function
__construct
(array
$items
= array()) {
9
$this->items =
$items
;
10
}
11
12
public
function
addItem
(
ilNotificationHandler
$handler) {
13
$this->items[] = $handler;
14
}
15
20
public
function
current
() {
21
return
$this->items[
$this->index
];
22
}
23
28
public
function
key
() {
29
return
$this->index
;
30
}
31
32
public
function
next
() {
33
$this->index++;
34
}
35
36
public
function
rewind
() {
37
$this->index = 0;
38
}
39
44
public
function
valid
() {
45
return
$this->index < count($this->items);
46
}
47
}
48
?>
ilNotificationHandlerIterator\__construct
__construct(array $items=array())
Definition:
class.ilNotificationHandlerIterator.php:8
ilNotificationHandlerIterator\next
next()
Definition:
class.ilNotificationHandlerIterator.php:32
ilNotificationHandlerIterator\key
key()
Definition:
class.ilNotificationHandlerIterator.php:28
ilNotificationHandlerIterator\rewind
rewind()
Definition:
class.ilNotificationHandlerIterator.php:36
ilNotificationHandler
Base class for notification handlers.
Definition:
class.ilNotificationHandler.php:16
ilNotificationHandlerIterator\$items
$items
Definition:
class.ilNotificationHandlerIterator.php:5
ilNotificationHandlerIterator
Definition:
class.ilNotificationHandlerIterator.php:3
ilNotificationHandlerIterator\valid
valid()
Definition:
class.ilNotificationHandlerIterator.php:44
Iterator
ilNotificationHandlerIterator\addItem
addItem(ilNotificationHandler $handler)
Definition:
class.ilNotificationHandlerIterator.php:12
ilNotificationHandlerIterator\current
current()
Definition:
class.ilNotificationHandlerIterator.php:20
ilNotificationHandlerIterator\$index
$index
Definition:
class.ilNotificationHandlerIterator.php:6
Services
Notifications
classes
class.ilNotificationHandlerIterator.php
Generated on Mon Apr 7 2025 19:00:53 for ILIAS by
1.8.13 (using
Doxyfile
)