ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ilOSDNotificationObject.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Notifications\Model\OSD
;
22
23
use
ILIAS\Notifications\Identification\NotificationIdentification
;
24
use
ILIAS\Notifications\Model\ilNotificationObject
;
25
29
class
ilOSDNotificationObject
30
{
31
protected
int
$id
;
32
protected
int
$user
;
33
protected
ilNotificationObject
$object
;
34
protected
int
$time_added
= 0;
35
protected
int
$valid_until
= 0;
36
protected
int
$visible_for
= 0;
37
protected
string
$type
;
38
protected
NotificationIdentification
$identification
;
39
40
public
function
__construct
(
41
int
$id,
42
int
$user,
43
ilNotificationObject
$object,
44
?
int
$time_added = 0,
45
?
int
$valid_until = 0,
46
?
int
$visible_for = 0,
47
?
string
$type =
''
,
48
?
NotificationIdentification
$identification = null
49
) {
50
$this->
id
=
$id
;
51
$this->
user
=
$user
;
52
$this->
object
=
$object
;
53
$this->time_added =
$time_added
;
54
$this->valid_until =
$valid_until
;
55
$this->visible_for =
$visible_for
;
56
$this->type =
$type
;
57
$this->identification =
$identification
;
58
}
59
60
public
function
getId
():
int
61
{
62
return
$this->id
;
63
}
64
65
public
function
getUser
():
int
66
{
67
return
$this->user
;
68
}
69
70
public
function
getObject
():
ilNotificationObject
71
{
72
return
$this->object
;
73
}
74
75
public
function
getValidUntil
():
int
76
{
77
return
$this->valid_until
;
78
}
79
80
public
function
setValidUntil
(
int
$valid_until): void
81
{
82
$this->valid_until =
$valid_until
;
83
}
84
85
public
function
getVisibleFor
():
int
86
{
87
return
$this->visible_for
;
88
}
89
90
public
function
setVisibleFor
(
int
$visible_for): void
91
{
92
$this->visible_for =
$visible_for
;
93
}
94
95
public
function
getTimeAdded
():
int
96
{
97
return
$this->time_added
;
98
}
99
100
public
function
setTimeAdded
(
int
$time_added): void
101
{
102
$this->time_added =
$time_added
;
103
}
104
105
public
function
getType
(): string
106
{
107
return
$this->type
;
108
}
109
110
public
function
setType
(
string
$type): void
111
{
112
$this->type =
$type
;
113
}
114
115
public
function
getIdentification
():
NotificationIdentification
116
{
117
return
$this->identification
;
118
}
119
120
public
function
setIdentification
(
NotificationIdentification
$identification): void
121
{
122
$this->identification =
$identification
;
123
}
124
}
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getId
getId()
Definition:
ilOSDNotificationObject.php:60
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$identification
NotificationIdentification $identification
Definition:
ilOSDNotificationObject.php:38
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$id
int $id
Definition:
ilOSDNotificationObject.php:31
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$valid_until
int $valid_until
Definition:
ilOSDNotificationObject.php:35
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$visible_for
int $visible_for
Definition:
ilOSDNotificationObject.php:36
ILIAS\Notifications\Model\ilNotificationObject
Definition:
ilNotificationObject.php:29
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:61
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$object
ilNotificationObject $object
Definition:
ilOSDNotificationObject.php:33
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getType
getType()
Definition:
ilOSDNotificationObject.php:105
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\setValidUntil
setValidUntil(int $valid_until)
Definition:
ilOSDNotificationObject.php:80
ilNotificationObject
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getObject
getObject()
Definition:
ilOSDNotificationObject.php:70
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getVisibleFor
getVisibleFor()
Definition:
ilOSDNotificationObject.php:85
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getUser
getUser()
Definition:
ilOSDNotificationObject.php:65
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\setTimeAdded
setTimeAdded(int $time_added)
Definition:
ilOSDNotificationObject.php:100
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getTimeAdded
getTimeAdded()
Definition:
ilOSDNotificationObject.php:95
ILIAS\Notifications\Identification\NotificationIdentification
Definition:
NotificationIdentification.php:26
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject
Definition:
ilOSDNotificationObject.php:29
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$time_added
int $time_added
Definition:
ilOSDNotificationObject.php:34
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$user
int $user
Definition:
ilOSDNotificationObject.php:32
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\setVisibleFor
setVisibleFor(int $visible_for)
Definition:
ilOSDNotificationObject.php:90
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\__construct
__construct(int $id, int $user, ilNotificationObject $object, ?int $time_added=0, ?int $valid_until=0, ?int $visible_for=0, ?string $type='', ?NotificationIdentification $identification=null)
Definition:
ilOSDNotificationObject.php:40
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\setIdentification
setIdentification(NotificationIdentification $identification)
Definition:
ilOSDNotificationObject.php:120
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\$type
string $type
Definition:
ilOSDNotificationObject.php:37
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\setType
setType(string $type)
Definition:
ilOSDNotificationObject.php:110
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getValidUntil
getValidUntil()
Definition:
ilOSDNotificationObject.php:75
ILIAS\Notifications\Model\OSD
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ilOSDNotificationObject.php:21
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Notifications\Model\OSD\ilOSDNotificationObject\getIdentification
getIdentification()
Definition:
ilOSDNotificationObject.php:115
NotificationIdentification
Services
Notifications
classes
Model
OSD
ilOSDNotificationObject.php
Generated on Fri Apr 4 2025 22:02:55 for ILIAS by
1.8.13 (using
Doxyfile
)