public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->type = 'reps';
     $this->lng->loadLanguageModule('rep');
     $this->lng->loadLanguageModule('cmps');
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     global $lng;
     $this->type = 'pdts';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $lng->loadLanguageModule("pd");
 }
示例#3
0
 /**
  * Constructor
  * @access	public
  */
 function ilObjGlossaryGUI($a_data, $a_id = 0, $a_call_by_reference = true, $a_prepare_output = true)
 {
     global $ilCtrl, $lng;
     $this->ctrl =& $ilCtrl;
     $this->ctrl->saveParameter($this, array("ref_id", "offset"));
     $lng->loadLanguageModule("content");
     $this->type = "glo";
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, false);
     // determine term id and check whether it is valid (belongs to
     // current glossary)
     $this->term_id = (int) $_GET["term_id"];
     $term_glo_id = ilGlossaryTerm::_lookGlossaryID($this->term_id);
     if ($this->term_id > 0 && $term_glo_id != $this->object->getId()) {
         $this->term_id = "";
     }
     $this->tax_id = $this->object->getTaxonomyId();
     if ($this->tax_id > 0) {
         $this->ctrl->saveParameter($this, array("show_tax", "tax_node"));
         include_once "./Services/Taxonomy/classes/class.ilObjTaxonomy.php";
         $this->tax = new ilObjTaxonomy($this->tax_id);
     }
     if ((int) $_GET["tax_node"] > 1 && $this->tax->getTree()->readRootId() != $_GET["tax_node"]) {
         $this->tax_node = (int) $_GET["tax_node"];
     }
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     $this->type = 'ps';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng->loadLanguageModule('ps');
     ilObjPrivacySecurityGUI::$ERROR_MESSAGE = array(ilSecuritySettings::$SECURITY_SETTINGS_ERR_CODE_AUTO_HTTPS => $this->lng->txt("ps_error_message_https_header_missing"), ilSecuritySettings::$SECURITY_SETTINGS_ERR_CODE_HTTPS_NOT_AVAILABLE => $this->lng->txt('https_not_possible'), ilSecuritySettings::$SECURITY_SETTINGS_ERR_CODE_HTTP_NOT_AVAILABLE => $this->lng->txt('http_not_possible'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MIN_LENGTH => $this->lng->txt('ps_error_message_invalid_password_min_length'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_LENGTH => $this->lng->txt('ps_error_message_invalid_password_max_length'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_AGE => $this->lng->txt('ps_error_message_invalid_password_max_age'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_LOGIN_MAX_ATTEMPTS => $this->lng->txt('ps_error_message_invalid_login_max_attempts'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN2 => $this->lng->txt('ps_error_message_password_min2_because_chars_numbers'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN3 => $this->lng->txt('ps_error_message_password_min3_because_chars_numbers_sc'), ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MAX_LENGTH_LESS_MIN_LENGTH => $this->lng->txt('ps_error_message_password_max_less_min'));
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     $this->type = 'mcts';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng->loadLanguageModule('mcst');
     $this->initMediaCastSettings();
 }
 /**
  * Constructor
  *
  * @access	public
  */
 function ilObjContentObjectGUI($a_data, $a_id = 0, $a_call_by_reference = true, $a_prepare_output = false)
 {
     global $lng, $ilCtrl;
     //echo "<br>ilobjcontobjgui-constructor-id-$a_id";
     $this->ctrl =& $ilCtrl;
     $lng->loadLanguageModule("content");
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, false);
 }
 /**
  * @param      $a_data
  * @param      $a_id
  * @param bool $a_call_by_reference
  * @param bool $a_prepare_output
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     $this->type = 'bibs';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng->loadLanguageModule('bibl');
     //Check Permissions globally for all SubGUIs. We only check write permissions
     $this->checkPermission('write');
 }
 /**
  * Constructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     global $lng;
     $this->type = 'cals';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng = $lng;
     $this->lng->loadLanguageModule('dateplaner');
     $this->lng->loadLanguageModule('jscalendar');
 }
 function ilObjMediaObjectGUI($a_data, $a_id = 0, $a_call_by_reference = false, $a_prepare_output = false)
 {
     global $lng, $ilCtrl;
     $this->ctrl =& $ilCtrl;
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng =& $lng;
     $this->back_title = "";
     $this->type = "mob";
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     global $ilCtrl;
     $this->type = 'skmg';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng->loadLanguageModule('skmg');
     include_once "./Services/Skill/classes/class.ilSkillTree.php";
     $this->skill_tree = new ilSkillTree();
     $ilCtrl->saveParameter($this, "obj_id");
 }
 /**
  * Constructor
  *
  * @access	public
  */
 function ilObjFileBasedLMGUI($a_data, $a_id = 0, $a_call_by_reference = true, $a_prepare_output = true)
 {
     global $lng, $ilCtrl;
     $this->ctrl =& $ilCtrl;
     $this->ctrl->saveParameter($this, array("ref_id"));
     $this->type = "htlm";
     $lng->loadLanguageModule("content");
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, false);
     //$this->actions = $this->objDefinition->getActions("mep");
     $this->output_prepared = $a_prepare_output;
 }
 /**
  * Constructor
  * @access	public
  */
 function ilObjGlossaryGUI($a_data, $a_id = 0, $a_call_by_reference = true, $a_prepare_output = true)
 {
     global $ilCtrl, $lng;
     $this->ctrl =& $ilCtrl;
     $this->ctrl->saveParameter($this, array("ref_id", "offset"));
     $lng->loadLanguageModule("content");
     $this->type = "glo";
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, false);
     // determine term id and check whether it is valid (belongs to
     // current glossary)
     $this->term_id = (int) $_GET["term_id"];
     $term_glo_id = ilGlossaryTerm::_lookGlossaryID($this->term_id);
     if ($this->term_id > 0 && $term_glo_id != $this->object->getId()) {
         $this->term_id = "";
     }
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     $this->type = "blga";
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     $this->lng->loadLanguageModule("blog");
 }
 /**
  * Contructor
  *
  * @access public
  */
 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
 {
     $this->type = 'ps';
     parent::ilObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
     self::initErrorMessages();
 }