ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilNotificationParameter.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
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}
description of a localized parameter this information is used locate translations while processing no...
__construct(private readonly string $name, private readonly array $parameters=[], private readonly string $language_module='notification')