Lines Matching refs:fileglob

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);
393 if (strcmp($fileglob, $basedir) == 0) return true;
394 if (@rmdir($fileglob)) {
412 function rmeverything_meta($fileglob, $basedir, $outputinfo) argument
414 $fileglob2 = substr($fileglob, strlen($basedir));
415 if (strpos($fileglob, '*') !== false) {
416 foreach (glob($fileglob) as $filename) {
419 } else if (is_file($fileglob)) {
424 if (@unlink($fileglob)) {
432 } else if (is_dir($fileglob)) {
433 $ok = $this->rmeverything_meta($fileglob.'/*', $basedir, $outputinfo);
435 if (strcmp($fileglob, $basedir) == 0) return true;
436 if (@rmdir($fileglob)) {
455 function rmeverything_revis($fileglob, $basedir, $outputinfo) argument
457 $fileglob2 = substr($fileglob, strlen($basedir));
458 if (strpos($fileglob, '*') !== false) {
459 foreach (glob($fileglob) as $filename) {
462 } else if (is_file($fileglob)) {
464 if (@unlink($fileglob)) {
472 } else if (is_dir($fileglob)) {
473 $ok = $this->rmeverything_revis($fileglob.'/*', $basedir, $outputinfo);
475 if (strcmp($fileglob, $basedir) == 0) return true;
476 if (@rmdir($fileglob)) {