ILIAS  Release_4_2_x_branch Revision 61807
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.iljQueryUtil.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
11 {
12  private static $ver = "1_6_2";
13  private static $ui_ver = "1_8_12";
14  private static $min = "-min";
15 
19  static function initjQuery()
20  {
21  global $tpl;
22 
23  $tpl->addJavaScript(self::getLocaljQueryPath(), true, 1);
24  }
25 
29  static function initjQueryUI()
30  {
31  global $tpl;
32 
33  $tpl->addJavaScript(self::getLocaljQueryUIPath(), true, 1);
34  }
35 
39  function getLocaljQueryPath()
40  {
41  return "./Services/jQuery/js/".self::$ver."/jquery".self::$min.".js";
42  }
43 
48  {
49  return "./Services/jQuery/js/ui_".self::$ui_ver."/jquery-ui.min.js";
50  }
51 
52 }
53 ?>