Beispiel #1
0
 /**
  *	Object should update access info (access-id and access-inherit) in database.
  *	Object can ignore this call if it doesn't exist in database.
  *
  *	@return		void
  */
 public function _updateAccessInfo()
 {
     if (!$this->_existsInDb()) {
         return;
     }
     $this->_mapper->entityUpdateAccessInfo($this);
 }
Beispiel #2
0
 /**
  * Retrievs list of available filesistems
  *
  * @return WL_Store_iRequest
  */
 public function getFsList()
 {
     return $this->_mapper->fsList();
 }
Beispiel #3
0
 /**
  *	Returns request for all files in this filesystem. See RM_ObjectFs_Mapper::fsGetFiles() for details
  *
  *	@return		RM_Store_iRequest<RM_ObjectFs_Entity>
  */
 public function getAllFiles()
 {
     return $this->_mapper->fsGetFiles($this);
 }