Example #1
0
 function _clearcache()
 {
     $this->cache = array();
     repository_stat(NULL, true);
 }
Example #2
0
 function mkdir($path, $mode, $options)
 {
     $path = $this->local_path($path);
     $result = mkdir($path, $mode, $options);
     if ($result) {
         repository_stat(NULL, true);
     }
     return $result;
 }