ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
iljQueryUtil Class Reference

jQuery utilities More...

+ Collaboration diagram for iljQueryUtil:

Static Public Member Functions

static initjQuery (ilGlobalTemplateInterface $a_tpl=null)
 inits and adds the jQuery JS-File to the global or a passed template More...
 
static initjQueryUI ($a_tpl=null)
 inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components) More...
 
static getLocaljQueryPath ()
 
static getLocaljQueryUIPath ()
 
static initMaphilight ()
 Inits and add maphilight to the general template. More...
 
static getLocalMaphilightPath ()
 Get local path of maphilight file. More...
 

Static Private Attributes

static $min = ".min"
 

Detailed Description

jQuery utilities

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 12 of file class.iljQueryUtil.php.

Member Function Documentation

◆ getLocaljQueryPath()

static iljQueryUtil::getLocaljQueryPath ( )
static
Returns
string local path of jQuery file

Definition at line 60 of file class.iljQueryUtil.php.

Referenced by ILIAS\COPage\ResourcesCollector\__construct(), ilSCORMOfflineModeGUI\executeCommand(), ilSCORM13Player\getPlayer(), ilSCORMOfflineMode\getSopManifestEntries(), and ILIAS\UI\Implementation\Component\Layout\Page\Renderer\setHeaderVars().

61  {
62  return "./libs/bower/bower_components/jquery/dist/jquery" . self::$min . ".js";
63  }
+ Here is the caller graph for this function:

◆ getLocaljQueryUIPath()

static iljQueryUtil::getLocaljQueryUIPath ( )
static
Returns
string local path of jQuery UI file

Definition at line 69 of file class.iljQueryUtil.php.

Referenced by ILIAS\COPage\ResourcesCollector\__construct().

70  {
71  return "./libs/bower/bower_components/jquery-ui/jquery-ui" . self::$min . ".js";
72  }
+ Here is the caller graph for this function:

◆ getLocalMaphilightPath()

static iljQueryUtil::getLocalMaphilightPath ( )
static

Get local path of maphilight file.

Definition at line 94 of file class.iljQueryUtil.php.

Referenced by ilPCMediaObject\getJavascriptFiles(), ilObjMediaObjectGUI\includePresentationJS(), and ilSCORM2004ScoGUI\sco_preview().

95  {
96  return "./libs/bower/bower_components/maphilight/jquery.maphilight.min.js";
97  }
+ Here is the caller graph for this function:

◆ initjQuery()

static iljQueryUtil::initjQuery ( ilGlobalTemplateInterface  $a_tpl = null)
static

inits and adds the jQuery JS-File to the global or a passed template

Parameters
\ilTemplate$a_tplglobal $tpl is used when null

Definition at line 26 of file class.iljQueryUtil.php.

References $DIC.

Referenced by ilTermsOfServiceAcceptanceHistoryTableGUI\__construct(), ilSetupGUI\__construct(), ilAccountRegistrationGUI\__initForm(), ilObjForumGUI\doHistoryCheck(), ilTestOutputGUI\executeCommand(), ilTestPlayerDynamicQuestionSetGUI\executeCommand(), ilForumExportGUI\exportHTML(), ilMainMenuSearchGUI\getHTML(), ilInfoScreenGUI\getHTML(), assOrderingHorizontalGUI\getPreview(), assMatchingQuestionGUI\getPreview(), assOrderingHorizontalGUI\getTestOutput(), assMatchingQuestionGUI\getTestOutput(), ilExplorerBaseGUI\init(), ilCalendarViewGUI\initialize(), ilOnScreenChatGUI\initializeFrontend(), ilTaggingGUI\initJavascript(), ilNoteGUI\initJavascript(), ilChart\initJS(), ilLPObjectStatisticsLPTableGUI\initLearningProgressDetailsLayer(), ilPreviewGUI\initPreview(), ilLMPresentationGUI\layout(), ilRTEGlobalTemplate\loadStandardTemplate(), ilCOPageGlobalTemplate\loadStandardTemplate(), ilDataCollectionGlobalTemplate\loadStandardTemplate(), ilGlobalTemplate\loadStandardTemplate(), ilTestPlayerAbstractGUI\outProcessingTime(), ilNotificationOSDGUI\populatePage(), ilSessionReminderGUI\populatePage(), ilGlobalPageTemplate\prepareBasicJS(), ilForumExportGUI\printPost(), ilForumExportGUI\printThread(), ilDragDropFileInputGUI\render(), ilMultipleNestedOrderingElementsInputGUI\render(), ilSCORM2004ScoGUI\sco_preview(), ilTextInputGUI\setMultiValues(), ilTestScoringByQuestionsGUI\showManScoringByQuestionParticipantsTable(), ilPageObjectGUI\showPage(), ilRepositoryGUI\showTree(), and ilObjSCORM2004LearningModuleGUI\showTree().

27  {
28  global $DIC;
29 
30  self::$min = "";
31  if ($a_tpl == null) {
32  $a_tpl = $DIC["tpl"];
33  }
34 
35  $a_tpl->addJavaScript(self::getLocaljQueryPath(), true, 0);
36  $a_tpl->addJavaScript('./libs/bower/bower_components/jquery-migrate/jquery-migrate.min.js', true, 0);
37  }
addJavaScript($a_js_file, $a_add_version_parameter=true, $a_batch=2)
Add a javascript file that should be included in the header.
$DIC
Definition: xapitoken.php:46
+ Here is the caller graph for this function:

◆ initjQueryUI()

static iljQueryUtil::initjQueryUI (   $a_tpl = null)
static

inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components)

Definition at line 44 of file class.iljQueryUtil.php.

References $DIC.

Referenced by ilPCIIMTriggerEditorGUI\__construct(), ilStudyProgrammeExpandableProgressListGUI\addJavaScript(), ilAccordionGUI\addJavaScript(), ilMainMenuSearchGUI\getHTML(), assOrderingHorizontalGUI\getPreview(), assMatchingQuestionGUI\getPreview(), assOrderingHorizontalGUI\getTestOutput(), assMatchingQuestionGUI\getTestOutput(), ilOnScreenChatGUI\initializeFrontend(), ilLMPresentationGUI\layout(), ilRTEGlobalTemplate\loadStandardTemplate(), ilCOPageGlobalTemplate\loadStandardTemplate(), ilDataCollectionGlobalTemplate\loadStandardTemplate(), ilGlobalTemplate\loadStandardTemplate(), ilGlobalPageTemplate\prepareBasicJS(), ilMultipleNestedOrderingElementsInputGUI\render(), ilSCORM2004ScoGUI\sco_preview(), ilTextInputGUI\setMultiValues(), and ilPageObjectGUI\showPage().

45  {
46  global $DIC;
47 
48  if ($a_tpl == null) {
49  $a_tpl = $DIC["tpl"];
50  }
51 
52  // Important: jQueryUI has to be included before(!) the bootstrap JS file
53  $a_tpl->addJavaScript(self::getLocaljQueryUIPath(), true, 0);
54  }
$DIC
Definition: xapitoken.php:46
+ Here is the caller graph for this function:

◆ initMaphilight()

static iljQueryUtil::initMaphilight ( )
static

Inits and add maphilight to the general template.

Definition at line 81 of file class.iljQueryUtil.php.

References $DIC, and $tpl.

Referenced by ilHelpGUI\initHelp().

82  {
83  global $DIC;
84 
85  $tpl = $DIC["tpl"];
86 
87  $tpl->addJavaScript(self::getLocalMaphilightPath(), true, 1);
88  }
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
$DIC
Definition: xapitoken.php:46
+ Here is the caller graph for this function:

Field Documentation

◆ $min

iljQueryUtil::$min = ".min"
staticprivate

Definition at line 18 of file class.iljQueryUtil.php.


The documentation for this class was generated from the following file: