Ejemplo n.º 1
0
 /**
  * @return bool TRUE if the file can be written by the current user, FALSE otherwise
  */
 public function isWritable()
 {
     try {
         $this->checkConnectPermission();
         return parent::isWritable();
     } catch (EyeSecurityException $e) {
         return false;
     }
 }