function __construct($a_obj_id, $a_mapping)
 {
     parent::__construct();
     $parts = explode(":", $a_obj_id);
     $this->obj_id = $parts[0];
     $this->mapping = $a_mapping;
 }
 /**
  * Constructor
  *
  * @param	string		$a_xml_file		xml file
  *
  * @access	public
  */
 public function __construct($a_xml_file, $a_mode)
 {
     define('EXPORT_VERSION', 4);
     parent::__construct($a_xml_file);
     $this->mode = $a_mode;
     $this->counter = -1;
 }
 /**
  * Constructor
  */
 public function __construct($folder, $xml)
 {
     parent::__construct();
     $this->setXMLContent($xml);
     $this->setFolder($folder);
     $this->setThrowException(true);
 }
 /**
  * Constructor
  *
  * @param	string		$a_xml_file		xml file
  *
  * @access	public
  */
 public function __construct($a_xml, $a_parent_id)
 {
     parent::__construct(null);
     $this->mode = ilCategoryXmlParser::MODE_CREATE;
     $this->parent_id = $a_parent_id;
     $this->setXMLContent($a_xml);
 }
 /**
  * Constructor
  *
  * @param	ilObjForum	$forum	 existing forum object
  * @param	string		$a_xml_file	xml data
  * @access	public
  */
 public function __construct($forum, $a_xml_data)
 {
     parent::__construct();
     $this->forum = $forum;
     $this->setXMLContent('<?xml version="1.0" encoding="utf-8"?>' . $a_xml_data);
     $this->aobject = new ilObjUser(ANONYMOUS_USER_ID);
 }
 /**
  * Constructor
  */
 function __construct($a_xml_file, &$test_object)
 {
     parent::__construct($a_xml_file, true);
     $this->tst_obj =& $test_object;
     $this->table = '';
     $this->active_id_mapping = array();
     $this->question_id_mapping = array();
     $this->user_criteria_checked = false;
 }
 /**
  * Constructor
  *
  * @param	string		$a_xml_file		xml file
  *
  * @access	public
  */
 public function __construct($a_xml, $a_parent_id = 0)
 {
     parent::__construct(null);
     $this->mode = ilContainerReferenceXmlParser::MODE_CREATE;
     $this->setXMLContent($a_xml);
 }
 /**
  * Constructor
  */
 public function __construct($a_xml)
 {
     parent::__construct('', true);
     $this->setThrowException(true);
     $this->setXMLContent($a_xml);
 }