ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLanguageDetection.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
29 
30  public function __construct()
31  {
32  $this->factory = new ilLanguageDetectorFactory();
33  }
34 
38  public function detect(): string
39  {
40  global $DIC;
41  $ilLog = $DIC->logger()->lang();
42 
43  $installed_languages = ilLanguage::_getInstalledLanguages();
44  $detected_language = $installed_languages[0];
45 
46  foreach ($this->factory->getValidInstances() as $detector) {
47  try {
48  $language = $detector->getIso2LanguageCode();
49  if (in_array($language, $installed_languages, true)) {
50  $detected_language = $language;
51  }
52  } catch (ilLanguageException $e) {
53  $ilLog->warning($e->getMessage());
54  }
55  }
56 
57  return $detected_language;
58  }
59 }
ilLanguageDetectorFactory $factory
Class ilLanguageDetectorFactory.
factory()
Class for language related exception handling in ILIAS.
Class ilLanguageDetection.
detect()
Return detected language.
global $DIC
Definition: shib_login.php:22
static _getInstalledLanguages()
Get installed languages.