ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Language.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Language;
22 
23 interface 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="")