ILIAS  release_8 Revision v8.24
ilNotificationParameter.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
24use ilObjUser;
25
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 {
64 }
65}
description of a localized parameter this information is used locate translations while processing no...
__construct($name, $parameters=[], $language_module='notification')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
User class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...