ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilTooltipGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
9 {
13  static function addTooltip($a_el_id, $a_text)
14  {
15  global $tpl;
16  include_once("./Services/YUI/classes/class.ilYuiUtil.php");
18  $tpl->addOnLoadCode(
19  'var ttip_'.$a_el_id.' = new YAHOO.widget.Tooltip("ttip_'.$a_el_id.
20  '", { context:"'.$a_el_id.'", text:"'.htmlspecialchars($a_text).'" } );');
21  }
22 
23 }
24 ?>