ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
ilNotificationParameter.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Notifications\Model
;
22
29
class
ilNotificationParameter
30
{
34
public
function
__construct
(
35
private
readonly
string
$name,
36
private
readonly array $parameters = [],
37
private
readonly
string
$language_module =
'notification'
38
) {
39
}
40
41
public
function
getName
(): string
42
{
43
return
$this->name;
44
}
45
49
public
function
getParameters
(): array
50
{
51
return
$this->parameters;
52
}
53
54
public
function
getLanguageModule
(): string
55
{
56
return
$this->language_module;
57
}
58
}
ILIAS\Notifications\Model\ilNotificationParameter
description of a localized parameter this information is used locate translations while processing no...
Definition:
ilNotificationParameter.php:29
ILIAS\Notifications\Model
Definition:
ilNotificationConfig.php:21
ILIAS\Notifications\Model\ilNotificationParameter\getName
getName()
Definition:
ilNotificationParameter.php:41
ILIAS\Notifications\Model\ilNotificationParameter\getLanguageModule
getLanguageModule()
Definition:
ilNotificationParameter.php:54
ILIAS\Notifications\Model\ilNotificationParameter\getParameters
getParameters()
Definition:
ilNotificationParameter.php:49
ILIAS\Notifications\Model\ilNotificationParameter\__construct
__construct(private readonly string $name, private readonly array $parameters=[], private readonly string $language_module='notification')
Definition:
ilNotificationParameter.php:34
components
ILIAS
Notifications
classes
Model
ilNotificationParameter.php
Generated on Sun Aug 31 2025 23:03:29 for ILIAS by
1.8.13 (using
Doxyfile
)