/**
  * Cronstructs the object by passing the objectID
  *
  * @param integer $attachmentID
  */
 public function __construct($attachmentID)
 {
     parent::__construct('attachmentsFilesystem', $attachmentID);
 }
 /**
  * Creates the object by passing the objectID
  * 
  * @param integer $avatarID
  */
 public function __construct($avatarID)
 {
     parent::__construct('avatarsFilesystem', $avatarID);
 }
 /**
  * Loads the session cache	 
  */
 protected static function getVirtualIDsFromSession()
 {
     $sessionVars = WCF::getSession()->getVars();
     if (isset($sessionVars['virtualLostAndFoundIDs'])) {
         self::$virtualFileIDs = $sessionVars['virtualLostAndFoundIDs'];
     }
 }
 /**
  * Creates the object by passing the objectID
  *
  * @param integer $backupID
  */
 public function __construct($backupID)
 {
     parent::__construct('backupFilesystem', $backupID);
 }