ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilUIFramework.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  public const BOOTSTRAP_JS = "./node_modules/bootstrap/dist/js/bootstrap.min.js";
28 
29  public static function init(ilGlobalTemplateInterface $template = null): void
30  {
31  global $DIC;
32 
33  $template = $template ?? $DIC->ui()->mainTemplate();
34  $template->addJavaScript(
35  self::BOOTSTRAP_JS,
36  true,
37  0
38  );
39  }
40 }
global $DIC
Definition: feed.php:28
static init(ilGlobalTemplateInterface $template=null)