/**
  * Constructor
  *
  * @param	int		$a_id		Object ID
  * @access	public
  */
 function ilSCORMResource($a_id = 0)
 {
     $this->files = array();
     $this->dependencies = array();
     $this->setType("sre");
     parent::ilSCORMObject($a_id);
 }
 /**
  * Constructor
  *
  * @param	int		$a_id		Object ID
  * @access	public
  */
 function ilSCORMResources($a_id = 0)
 {
     global $lng;
     parent::ilSCORMObject($a_id);
     $this->setType('srs');
     $this->setTitle($lng->txt('cont_resources'));
 }
 /**
  * Constructor
  *
  * @param	int		$a_id		Object ID
  * @access	public
  */
 function ilSCORMOrganizations($a_id = 0)
 {
     global $lng;
     // title should be overrriden by ilSCORMExplorer
     $this->setTitle($lng->txt("cont_organizations"));
     parent::ilSCORMObject($a_id);
     $this->setType("sos");
 }
 /**
  * Constructor
  *
  * @param	int		$a_id		Object ID
  * @access	public
  */
 function ilSCORMManifest($a_id = 0)
 {
     parent::ilSCORMObject($a_id);
     $this->setType("sma");
 }
 /**
  * Constructor
  *
  * @param	int		$a_id		Object ID
  * @access	public
  */
 function ilSCORMOrganization($a_id = 0)
 {
     parent::ilSCORMObject($a_id);
     $this->setType('sor');
 }
 /**
  * Constructor
  *
  * @param	int		$a_id		Object ID
  * @access	public
  */
 function ilSCORMItem($a_id = 0)
 {
     parent::ilSCORMObject($a_id);
     $this->setType("sit");
 }