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
ilNotificationParameter.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
32
class
ilNotificationParameter
33
{
34
private
string
$name
;
38
private
array
$parameters
;
39
private
string
$language_module
;
40
41
public
function
__construct
($name, $parameters = [], $language_module =
'notification'
)
42
{
43
$this->name =
$name
;
44
$this->parameters =
$parameters
;
45
$this->language_module =
$language_module
;
46
}
47
48
public
function
getName
(): string
49
{
50
return
$this->name
;
51
}
52
56
public
function
getParameters
(): array
57
{
58
return
$this->parameters
;
59
}
60
61
public
function
getLanguageModule
(): string
62
{
63
return
$this->language_module
;
64
}
65
}
ILIAS\Notifications\Model\ilNotificationParameter
description of a localized parameter this information is used locate translations while processing no...
Definition:
ilNotificationParameter.php:32
ILIAS\Notifications\Model\ilNotificationParameter\$language_module
string $language_module
Definition:
ilNotificationParameter.php:39
ILIAS\Notifications\Model\ilNotificationParameter\$name
string $name
Definition:
ilNotificationParameter.php:34
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
ILIAS\Notifications\Model\ilNotificationParameter\getName
getName()
Definition:
ilNotificationParameter.php:48
ilObjUser
ILIAS\Notifications\Model\ilNotificationParameter\getLanguageModule
getLanguageModule()
Definition:
ilNotificationParameter.php:61
ILIAS\Notifications\Model\ilNotificationParameter\getParameters
getParameters()
Definition:
ilNotificationParameter.php:56
ilNotification
ILIAS\Notifications\Model\ilNotificationParameter\$parameters
array $parameters
Definition:
ilNotificationParameter.php:38
ILIAS\Notifications\Model\ilNotificationParameter\__construct
__construct($name, $parameters=[], $language_module='notification')
Definition:
ilNotificationParameter.php:41
Services
Notifications
classes
Model
ilNotificationParameter.php
Generated on Thu Apr 10 2025 22:02:39 for ILIAS by
1.8.13 (using
Doxyfile
)