Lines Matching refs:page
72 foreach($pages as $page)
74 print $page['id']."\n";
116 function is_link_application($page, $text) argument
123 $page = realpath($page);
125 if (!strncmp($page, $locate, strlen($locate)))
127 $text = link_replace($text, $elem[0], $elem[1], DOKU_PAGE.str_replace(':', '/', $page));
134 function ajax_indexpage($page = NULL, $text = NULL) { argument
138 if(!$_POST['page'] && $page == NULL)
148 !$page ? $page = $_REQUEST['page'] : $flag = 1;
151 $page = ':'.trim($page).'.txt';
152 $text = is_link_application($page, $text);
155 $rd_page = fopen(DOKU_PAGE.str_replace(':', '/', $page), 'w+');