Lines Matching refs:fileglob

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);
407 if (strcmp($fileglob, $basedir) == 0) return true;
408 if (@rmdir($fileglob)) {
426 function rmeverything_meta($fileglob, $basedir, $outputinfo) argument
428 $fileglob2 = substr($fileglob, strlen($basedir));
429 if (strpos($fileglob, '*') !== false) {
430 foreach (glob($fileglob) as $filename) {
433 } else if (is_file($fileglob)) {
438 if (@unlink($fileglob)) {
446 } else if (is_dir($fileglob)) {
447 $ok = $this->rmeverything_meta($fileglob.'/*', $basedir, $outputinfo);
449 if (strcmp($fileglob, $basedir) == 0) return true;
450 if (@rmdir($fileglob)) {
469 function rmeverything_revis($fileglob, $basedir, $outputinfo) argument
471 $fileglob2 = substr($fileglob, strlen($basedir));
472 if (strpos($fileglob, '*') !== false) {
473 foreach (glob($fileglob) as $filename) {
476 } else if (is_file($fileglob)) {
478 if (@unlink($fileglob)) {
486 } else if (is_dir($fileglob)) {
487 $ok = $this->rmeverything_revis($fileglob.'/*', $basedir, $outputinfo);
489 if (strcmp($fileglob, $basedir) == 0) return true;
490 if (@rmdir($fileglob)) {