/**
  * Constructor
  *
  * @param
  */
 function ilPropertyFormGUI()
 {
     global $lng;
     $lng->loadLanguageModule("form");
     parent::ilFormGUI();
     // do it as early as possible
     $this->rebuildUploadedFiles();
 }
예제 #2
0
 /**
  * Constructor
  *
  * @param
  */
 function ilPropertyFormGUI()
 {
     global $lng;
     $lng->loadLanguageModule("form");
     parent::ilFormGUI();
     // avoid double submission
     $this->setPreventDoubleSubmission(true);
     // do it as early as possible
     $this->rebuildUploadedFiles();
 }
예제 #3
0
 /**
  * Constructor
  *
  * @param
  */
 function __construct()
 {
     global $lng, $tpl;
     $this->maxdepth = -1;
     $this->multi_commands = array();
     $this->commands = array();
     $this->drag_target[] = array();
     $this->drag_content[] = array();
     $lng->loadLanguageModule("form");
     $this->setCheckboxName("cbox");
     parent::ilFormGUI();
     $this->help_items = array();
     include_once "./Services/YUI/classes/class.ilYuiUtil.php";
     ilYuiUtil::initDragDrop();
     $tpl->addJavascript("./Services/Form/js/ServiceFormHierarchyForm.js");
 }