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
ilNotificationObject.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Notifications\Model
;
22
23
use
ilNotification
;
24
use
ilObjUser
;
25
29
class
ilNotificationObject
30
{
31
public
ilNotificationConfig
$baseNotification
;
32
public
ilObjUser
$user
;
33
public
string
$title
=
''
;
34
public
string
$shortDescription
=
''
;
35
public
string
$longDescription
=
''
;
39
public
array
$links
= [];
40
public
string
$iconPath
=
''
;
41
public
array
$handlerParams
= [];
42
43
public
function
__construct
(
ilNotificationConfig
$baseNotification,
ilObjUser
$user)
44
{
45
$this->baseNotification =
$baseNotification
;
46
$this->
user
=
$user
;
47
$this->handlerParams = $this->baseNotification->getHandlerParams();
48
}
49
53
public
function
__sleep
(): array
54
{
55
return
[
'title'
,
'shortDescription'
,
'longDescription'
,
'iconPath'
,
'links'
,
'handlerParams'
];
56
}
57
}
ILIAS\Notifications\Model\ilNotificationObject\$iconPath
string $iconPath
Definition:
ilNotificationObject.php:40
ILIAS\Notifications\Model\ilNotificationConfig
Definition:
ilNotificationConfig.php:31
ILIAS\Notifications\Model\ilNotificationObject
Definition:
ilNotificationObject.php:29
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:61
ILIAS\Notifications\Model
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ilNotificationConfig.php:21
ilObjUser
ILIAS\Notifications\Model\ilNotificationObject\$links
array $links
Definition:
ilNotificationObject.php:39
ilNotification
ILIAS\Notifications\Model\ilNotificationObject\$user
ilObjUser $user
Definition:
ilNotificationObject.php:32
ILIAS\Notifications\Model\ilNotificationObject\$baseNotification
ilNotificationConfig $baseNotification
Definition:
ilNotificationObject.php:31
ILIAS\Notifications\Model\ilNotificationObject\__sleep
__sleep()
Definition:
ilNotificationObject.php:53
ILIAS\Notifications\Model\ilNotificationObject\__construct
__construct(ilNotificationConfig $baseNotification, ilObjUser $user)
Definition:
ilNotificationObject.php:43
ILIAS\Notifications\Model\ilNotificationObject\$shortDescription
string $shortDescription
Definition:
ilNotificationObject.php:34
ILIAS\Notifications\Model\ilNotificationObject\$longDescription
string $longDescription
Definition:
ilNotificationObject.php:35
ILIAS\Notifications\Model\ilNotificationObject\$handlerParams
array $handlerParams
Definition:
ilNotificationObject.php:41
ILIAS\Notifications\Model\ilNotificationObject\$title
string $title
Definition:
ilNotificationObject.php:33
Services
Notifications
classes
Model
ilNotificationObject.php
Generated on Tue Apr 1 2025 22:02:29 for ILIAS by
1.8.13 (using
Doxyfile
)