Lines Matching refs:page
91 list($pattern, $page, $loc, $skipacl) = $row;
93 $page = $this->matchPagePattern($pattern, $id, $page, $pns);
94 if ($page === false) continue;
95 $page = (new PageResolver($ns))->resolveId($page);
96 if (!page_exists($page)) continue;
97 if (!$skipacl && auth_quickaclcheck($page) < AUTH_READ) continue;
98 $pages[] = $page;
115 foreach ($pages as $page) {
116 $content .= p_wiki_xhtml($page, '', false);
144 * @param string $page the page to include on success - may contain regexp placeholders
148 protected function matchPagePattern($pattern, $id, $page, $pns = null) argument
150 if (trim($pattern, ':') == '**') return $page; // match all
157 $page = str_replace('$' . $i, $matches[$i], $page);
159 return $page;
172 return $page;
178 return $page;
183 return $page;