Lines Matching refs:return
503 $return = true;
518 $return = true; // recurse forever
522 $return = false; // depth reached
524 $return = true;
528 if ($return) {
549 if (empty($opts['listdirs'])) return $return;
552 …if (!empty($opts['dirmatch']) && !preg_match('/' . $opts['dirmatch'] . '/', $file)) return $return;
553 …!empty($opts['nsmatch']) && !preg_match('/' . $opts['nsmatch'] . '/', $item['ns'])) return $return;
555 if (empty($opts['listfiles'])) return $return;
556 if (empty($opts['skipacl']) && $item['perm'] < AUTH_READ) return $return;
557 if (!empty($opts['pagesonly']) && !str_ends_with($file, '.txt')) return $return;
558 if (empty($opts['showhidden']) && isHiddenPage($item['id'])) return $return;
559 … (!empty($opts['filematch']) && !preg_match('/' . $opts['filematch'] . '/', $file)) return $return;
560 …!empty($opts['idmatch']) && !preg_match('/' . $opts['idmatch'] . '/', $item['id'])) return $return;
566 $item['open'] = $return;
586 return $return;