ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
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 Sun Aug 31 2025 22:02:28 for ILIAS by
1.8.13 (using
Doxyfile
)