ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StateTranslator.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
28 trait StateTranslator
29 {
30  public function translateState(int $state, \ilLanguage $lng): string
31  {
32  return match ($state) {
33  State::SCHEDULED => $lng->txt("observer_state_scheduled"),
34  State::RUNNING => $lng->txt("observer_state_running"),
35  State::USER_INTERACTION => $lng->txt("observer_state_user_interaction"),
36  State::FINISHED => $lng->txt("observer_state_finished"),
37  State::ERROR => $lng->txt("observer_state_error"),
38  default => '',
39  };
40  }
41 }
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $lng
Definition: privfeed.php:31