ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Language.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23interface Language
24{
25 public function txt(string $a_topic, string $a_default_lang_fallback_mod = ""): string;
26
27 public function loadLanguageModule(string $a_module): void;
28
29 public function getLangKey(): string;
30
32 public function toJS($key): void;
33}
loadLanguageModule(string $a_module)
txt(string $a_topic, string $a_default_lang_fallback_mod="")