/plugin/orphanswanted/ |
H A D | helper.php | 34 $pages[$pageid] = array("exists"=>page_exists($pageid), "links"=>0); 39 if (!page_exists($pageid)) continue; 94 function orph_report_table($data, $page_exists, $has_links, $params_array, $caller = null) { argument 103 $show_heading = ($page_exists && $conf['useheading']) ? true : false ; 130 …if( ! ((array_key_exists('exists', $item)) and ($item['exists'] == $page_exists) and (array_key_ex… 185 . "\" class=\"" . ($page_exists ? "wikilink1" : "wikilink2") . "\" >"
|
/plugin/sidebarng/ |
H A D | action.php | 114 if(@page_exists($main_sb)) { 150 if(@page_exists($user_sb)) { 174 … if(@page_exists($group_sb) && auth_quickaclcheck(cleanID($group_sb)) >= AUTH_READ) { 183 … if(@page_exists($group_sb) && auth_quickaclcheck(cleanID($group_sb)) >= AUTH_READ) { 289 if(@page_exists($ns_sb)) return $ns_sb;
|
/plugin/userhomepage/ |
H A D | helper.php | 87 if (page_exists($pageId)) { 100 if ((page_exists($this->getPrivateID())) && (page_exists($this->getPublicID()))) { 104 } elseif (page_exists($this->getPrivateID())) { 107 } elseif (page_exists($this->getPublicID())) {
|
H A D | action.php | 131 $created['private'] = page_exists($this->private_page); 150 if (!page_exists($this->custom_target)) { 162 …r.'/'.$this->getConf('templates_path').'/userhomepage_public.txt') && !page_exists($this->public_p… 176 $created['public'] = page_exists($this->public_page); 188 if (!page_exists($this->custom_target)) { 210 if (($created['public']) && (page_exists($this->public_page))) { 214 …} elseif (($created['private']) && (page_exists($this->private_page)) && ($this->getConf('edit_bef… 218 …} elseif (($this->getConf('redirection')) && (page_exists($this->private_page)) && (((!isset($_GET… 454 if ((page_exists($privateId)) && (page_exists($publicId))) { 460 } elseif (page_exists($publicId)) { [all …]
|
/plugin/pagebuttons/ |
H A D | action.php | 95 || !page_exists($ID) 118 || !page_exists($ID) 137 && page_exists($id)
|
/plugin/docnavigation/syntax/ |
H A D | pagenav.php | 114 if (page_exists($ns . ':' . $conf['start'])) { 117 } elseif (page_exists($ns . ':' . noNS($ns))) { 120 } elseif (page_exists($ns)) {
|
/plugin/infomail/ |
H A D | helper.php | 41 if (!page_exists($lid)) return []; 74 if (page_exists(self::TPL)) {
|
/plugin/404manager/_test/ |
H A D | dokuwiki.test.php | 58 $this->assertTrue(page_exists(constant_parameters::$PAGE_EXIST_ID)); 68 $this->assertFalse(page_exists(constant_parameters::$PAGE_DOES_NOT_EXIST_ID));
|
/plugin/minimap/ |
H A D | syntax.php | 225 if (page_exists($nameSpacePathPrefix . $startConf)) { 370 if (page_exists($id . $conf['start'])) { 373 } elseif (page_exists($id . noNS(cleanID($id)))) { 376 } elseif (page_exists($id)) {
|
/plugin/combo/syntax/ |
H A D | minimap.php | 234 if (page_exists($nameSpacePathPrefix . $startConf)) { 377 if (page_exists($id . $conf['start'])) { 380 } elseif (page_exists($id . noNS(cleanID($id)))) { 383 } elseif (page_exists($id)) {
|
/plugin/autotranslation/ |
H A D | admin.php | 41 !page_exists($page["id"]) 63 if(!page_exists($translID)) {
|
H A D | helper.php | 240 if(page_exists($link)) { 353 if(page_exists($link, '', false)) { 442 if($orev && !page_exists($orig, $orev)) $orev = 0; 467 if($orev && !page_exists($id, $orev)) { 495 if( $inputID != $link && page_exists($link,'',false) ){
|
/plugin/translation/ |
H A D | admin.php | 54 !page_exists($page["id"]) 75 if (!page_exists($translID)) {
|
H A D | helper.php | 213 if (page_exists($link)) { 285 $exists = page_exists($target, '', false); 371 if ($orev && !page_exists($id, $orev)) {
|
/plugin/diagrams/action/ |
H A D | embed.php | 54 if (!page_exists($id)) { 100 if (!page_exists($id)) {
|
/plugin/struct/action/ |
H A D | output.php | 52 if (!page_exists($ID)) return; 102 if (!$event->data['id'] || !page_exists($event->data['id'])) return;
|
/plugin/monthcal/ |
H A D | syntax.php | 333 $page_exists = null; 334 …mespace'] . ':' . $date->format('Y') . ':' . $date->format('m'), $date->format('d'), $page_exists); 335 if ($page_exists) {
|
/plugin/pagelist/ |
H A D | syntax.php | 68 $exists = page_exists($id); 114 $pages[$i]['exists'] = page_exists($page['id']);
|
/plugin/brj404/ |
H A D | action.php | 26 if (function_exists('page_exists'))
|
/plugin/autostart/ |
H A D | action.php | 17 public function page_exists($id) { 18 if (function_exists('page_exists')) 19 return page_exists($id); 33 if (!$this->page_exists($ID)) { 34 if($this->page_exists($ID.':'.$conf['start'])) 37 elseif($this->page_exists($ID.':'.noNS(cleanID($ID)))) 25 function page_exists($id) { global() function in action_plugin_autostart
|
/plugin/judge/ |
H A D | syntax.php | 306 if (page_exists($data['problem_name'])) { 307 $page_answer_exist = page_exists($data['judge']); 435 if (page_exists($data['problem_name'])) {
|
/plugin/advanced/admin/ |
H A D | import.php | 127 if (page_exists($wiki_page) && !$overwrite_pages) { 132 if (!page_exists($wiki_page)) {
|
/plugin/userpagecreate/ |
H A D | action.php | 68 $exists = page_exists($res . ($do_ns ? (':' . $conf['start']) : '')); 106 } elseif (page_exists($tpl)) {
|
/plugin/404manager/ |
H A D | action.php | 154 if (page_exists($targetPage)) { 185 if (page_exists($startPage)) { 191 if (page_exists($startPage)) { 334 if (page_exists($startPageNameSpace)) {
|
/plugin/snippets/exe/ |
H A D | snippets.php | 25 if(!page_exists($page) or auth_quickaclcheck($page) < AUTH_READ) die();
|