Exemple #1
0
 public static function fileDeleted($info)
 {
     $path = $info['path'];
     if (self::$DO_LOG) {
         error_log("fileDeleted " . $path);
     }
     PersistentMap::remove($path);
 }
Exemple #2
0
 public function postfile_put_contents($path, $data)
 {
     if (self::$DO_LOG) {
         error_log("postfile_put_contents {$path}");
     }
     PersistentMap::remove($path);
     return true;
 }