ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilAdditionalCharactersGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  * To change this template, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 
7 include_once("class.ilCustomInputGUI.php");
8 
10 
17  function __construct($a_title = "", $a_postvar = "")
18  {
19  global $lng;
20 
21  parent::__construct($a_title, $a_postvar);
22  $this->setType("custom");
23  $this->setTitle($lng->txt("additional_characters"));
24  $html = "<img style=\"cursor: pointer\" alt=\"".$lng->txt('additional_characters')."\" src=\"Services/InsertChar/insertChar.gif\" onclick=\"myInsertChar('Services/InsertChar/');\" />";
25  $html .= "<script type=\"text/javascript\" src=\"Services/InsertChar/insertChar.js\"></script>";
26  $this->setHtml($html);
27  }
28 }
29 ?>