ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Language.php
Go to the documentation of this file.
1 <?php
2 
20 declare(strict_types=1);
21 
22 namespace ILIAS\Language;
23 
24 interface Language
25 {
26  public function txt(string $a_topic, string $a_default_lang_fallback_mod = ""): string;
27  public function loadLanguageModule(string $a_module): void;
28 }
loadLanguageModule(string $a_module)
txt(string $a_topic, string $a_default_lang_fallback_mod="")