26 public const JAVA =
"java";
27 public const PHP =
"php";
29 public const CPP =
"cpp";
30 public const HTML =
"html4strict";
31 public const XML =
"xml";
39 protected static array
$langs = array(
46 self::VISUAL_BASIC =>
"Visual Basic",
47 self::DELPHI =>
"Delphi" 56 "html" =>
"html4strict" 63 $this->lang = $a_lang;
68 return new self($a_lang);
85 return isset(self::$langs[$a_lang]);
93 return self::$v51_map[$a_old_lang_id] ?? $a_old_lang_id;
103 $map = array_flip(self::$v51_map);
104 foreach (self::$langs as $k => $v) {
105 if (isset($map[$k])) {
115 include_once(
"./libs/composer/vendor/geshi/geshi/src/geshi.php");
116 $geshi =
new Geshi(html_entity_decode($a_code), $this->lang);
121 $a_code = $geshi->parse_code();
124 $a_code = substr($a_code, strpos($a_code,
">") + 1);
125 $a_code = substr($a_code, 0, strrpos($a_code,
"<"));
static getInstance(string $a_lang)
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...
__construct(string $a_lang)
static getNewLanguageId(string $a_old_lang_id)
Get new language id (for an old one)
static getSupportedLanguages()
Get supported languages (keys are internal values, values are for representation) ...
highlight(string $a_code)
static getSupportedLanguagesV51()
Get supported languages (keys are ILIAS <= 5.1 internal values, values are for representation) ...
static isSupported(string $a_lang)
Is language supported?