/**
  * Constructor
  * @access	public
  */
 function ilSCORM2004PageNode($a_slm_object, $a_id = 0)
 {
     parent::ilSCORM2004Node($a_slm_object, $a_id);
     $this->setType("page");
     $this->id = $a_id;
     $this->mobs_contained = array();
     $this->files_contained = array();
     if ($a_id != 0) {
         $this->read();
     }
 }
예제 #2
0
 /**
  * Constructor
  */
 function __construct($a_slm_object, $a_id = 0)
 {
     parent::ilSCORM2004Node($a_slm_object, $a_id);
     $this->setType("ass");
 }
예제 #3
0
 /**
  * Constructor
  * @access	public
  */
 function ilSCORM2004Chapter($a_slm_object, $a_id = 0)
 {
     parent::ilSCORM2004Node($a_slm_object, $a_id);
     $this->setType("chap");
 }