Searched refs:fileglob (Results 1 – 3 of 3) sorted by relevance
/plugin/cronojob/jobs/ |
D | clearcache.php | 25 function rmeverything_cache($fileglob, $basedir, $params, $time_older) { argument 28 $fileglob2 = substr($fileglob, strlen($basedir)); 29 if (strpos($fileglob, '*') !== false) { 30 foreach (glob($fileglob) as $filename) { 33 } else if (is_file($fileglob)) { 36 if (strcmp($basedir, dirname($fileglob)) == 0) { 54 if (@unlink($fileglob)) { 60 } else if (is_dir($fileglob)) { 61 $ok = rmeverything_cache($fileglob.'/*', $basedir, $params, $time_older); 63 if (strcmp($fileglob, $basedir) == 0) return true; [all …]
|
/plugin/cacherevisionseraser2/ |
D | admin.php | 381 function rmeverything_oldlockpages($fileglob, $basedir, $outputinfo) argument 383 $fileglob2 = substr($fileglob, strlen($basedir)); 384 if (strpos($fileglob, '*') !== false) { 385 foreach (glob($fileglob) as $filename) { 388 } else if (is_file($fileglob)) { 392 if (time()-@filemtime($fileglob) < $this->locktime) { 393 …>'.$this->lang['lockexpirein'].' '.($this->locktime-(time()-@filemtime($fileglob))).' '.$this->lan… 396 if (@unlink($fileglob)) { 404 } else if (is_dir($fileglob)) { 405 $ok = $this->rmeverything_oldlockpages($fileglob.'/*', $basedir, $outputinfo); [all …]
|
/plugin/cacherevisionseraser/ |
D | admin.php | 367 function rmeverything_oldlockpages($fileglob, $basedir, $outputinfo) argument 369 $fileglob2 = substr($fileglob, strlen($basedir)); 370 if (strpos($fileglob, '*') !== false) { 371 foreach (glob($fileglob) as $filename) { 374 } else if (is_file($fileglob)) { 378 if (time()-@filemtime($fileglob) < $this->locktime) { 379 …>'.$this->lang['lockexpirein'].' '.($this->locktime-(time()-@filemtime($fileglob))).' '.$this->lan… 382 if (@unlink($fileglob)) { 390 } else if (is_dir($fileglob)) { 391 $ok = $this->rmeverything_oldlockpages($fileglob.'/*', $basedir, $outputinfo); [all …]
|