/**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct(ilFileSystemStorage::STORAGE_DATA, false, 0);
 }
 /**
  * Constructor
  *
  * @access public
  * @param int storage type
  * @param bool En/Disable automatic path conversion. If enabled files with id 123 will be stored in directory files/1/file_123
  * @param int object id of container (e.g file_id or mob_id)
  * 
  */
 public function __construct($a_container_id = 0)
 {
     parent::__construct(self::STORAGE_WEB, true, $a_container_id);
 }
 /**
  * Constructor
  *
  * @param int	exercise id 
  */
 public function __construct($a_container_id = 0, $a_ass_id = 0)
 {
     $this->ass_id = $a_ass_id;
     parent::__construct(self::STORAGE_DATA, true, $a_container_id);
 }
 /**
  * Constructor
  *
  * @access public
  * 
  */
 public function __construct($a_container_id = 0)
 {
     global $log;
     $this->log = $log;
     parent::__construct(ilFileSystemStorage::STORAGE_DATA, true, $a_container_id);
 }
 /**
  * Constructor
  *
  * @access public
  * @param int object id of container (e.g file_id or mob_id)
  * 
  */
 public function __construct($a_container_id, $a_usr_id)
 {
     $this->usr_id = $a_usr_id;
     parent::__construct(self::STORAGE_DATA, true, $a_container_id);
     $this->appendToPath('_' . $this->usr_id);
 }
 public function __construct($questionId, $userId)
 {
     parent::__construct(ilFileSystemStorage::STORAGE_DATA, true, $questionId);
     $this->initSubPath($userId);
 }
 /**
  * @param integer $activeId
  */
 public function __construct($activeId)
 {
     parent::__construct(ilFileSystemStorage::STORAGE_DATA, true, $activeId);
 }