ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilTextHighlighterGUI.php
Go to the documentation of this file.
1<?php
2
26{
30 public static function highlight(
31 string $a_dom_node_id,
32 string $a_text,
33 ?ilGlobalTemplateInterface $a_tpl = null
34 ): void {
36 global $DIC;
37
38 $tpl = $DIC["tpl"];
39
40 if (!trim($a_text)) {
41 return;
42 }
43
44 if ($a_tpl === null) {
45 $a_tpl = $tpl;
46 }
47 $a_tpl->addJavaScript("assets/js/ilTextHighlighter.js");
48 $a_tpl->addOnLoadCode("il.TextHighlighter.highlight('" . $a_dom_node_id . "','" . $a_text . "');");
49 }
50}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:26