ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLinkifyUtil.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  private static string $ver = "1_1";
28  private static string $min = ".min";
29 
30  public static function initLinkify(?ilGlobalTemplateInterface $a_tpl = null): void
31  {
32  global $DIC;
33 
34  $tpl = $DIC["tpl"];
35 
36  if ($a_tpl === null) {
37  $a_tpl = $tpl;
38  }
39 
40  foreach (self::getLocalJsPaths() as $p) {
41  $a_tpl->addJavaScript($p);
42  }
43  }
44 
49  public static function getLocalJsPaths(): array
50  {
51  return [
52  "assets/js/linkify.min.js",
53  "assets/js/linkify-element.min.js",
54  "assets/js/ilExtLink.js"
55  ];
56  }
57 }
static string $min
static initLinkify(?ilGlobalTemplateInterface $a_tpl=null)
static getLocalJsPaths()
Get paths of necessary js files.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
Linkify utility class.
static string $ver