ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLanguageDetection.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 require_once "Services/Language/classes/class.ilLanguage.php";
23 require_once "Services/Language/classes/class.ilLanguageDetectorFactory.php";
24 
31 {
33 
34  public function __construct()
35  {
36  $this->factory = new ilLanguageDetectorFactory();
37  }
38 
42  public function detect(): string
43  {
44  global $DIC;
45  $ilLog = $DIC->logger()->lang();
46 
47  $installed_languages = ilLanguage::_getInstalledLanguages();
48  $detected_language = $installed_languages[0];
49 
50  foreach ($this->factory->getValidInstances() as $detector) {
51  try {
52  $language = $detector->getIso2LanguageCode();
53  if (in_array($language, $installed_languages, true)) {
54  $detected_language = $language;
55  }
56  } catch (ilLanguageException $e) {
57  $ilLog->warning($e->getMessage());
58  }
59  }
60 
61  return $detected_language;
62  }
63 }
ilLanguageDetectorFactory $factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
detect()
Return detected language.
global $DIC
Definition: feed.php:28
static _getInstalledLanguages()
Get installed languages.