Lines Matching full:id
32 global $ID, $REV, $conf;
35 $saveID = $ID;
39 $fileSidebar = getSidebarFN(getNS($ID), tpl_getConf('sidebar_page'));
43 $ID = $fileSidebar;
45 print p_wiki_xhtml($ID,$REV,false);
52 $ID = $saveID;
57 * Return the correct ID for <div class="dokuwiki">
86 global $ID;
89 $ns = getNS($ID);
96 list($id, $hash) = explode('#', $in[1][0], 2);
97 resolve_pageid(getNS($ID), $id, $exists);
98 if (getNS($id) != $ns) continue; // ignore links to other namespaces
103 if (!$title) $title = hsc(p_get_first_heading($id));
104 if (!$title) $title = hsc(ucwords(noNS($id)));
107 if ($id == $ID) $out .= '<span class="activetab">'.$title.'</span> ';
108 else $out .= '<a href="'.wl($id).'" class="tab">'.$title.'</a> ';