Lines Matching +full:id +(+path:plugin +path:indexmenu) -(+path:plugin +path:indexmenu +path:lang)

5  *  $Id: indexmenu.php 93 2007-05-07 11:56:33Z wingedfox $
123 * used to purge the cache, if path to the current ID is used
225 global $ID;
231 $id = resolve_pageid(getNS(getID()),$ns,$exists);
258 $data[$k]['parent_id'] = (string)getNS($v['id']);
278 'id' => $conf['start'],
301 * make unique id for current menu
304 $add = $opts['js']?"id=\"$idx\"":"class=\"idx\"";
386 ." title=\"{$item['id']}\"><!-- {$item['id']} --></ul>";
443 * get page id by filename
445 $id = pathID($file);
450 if ($lvl == 1 && isset($opts['root']) && $id != $opts['root']) return false;
459 if($type=='f' && isHiddenPage($id)){
464 if(auth_quickaclcheck($id) < AUTH_READ){
470 if (noNS(getNS($id))==noNS($id) || // /<ns>/<ns>.txt
471 $id==$conf['start'] || // <ns> == <start_page>
472 $id==getNS($id).":".$conf['start'] || // /<ns>/<start_page>.txt
473 @file_exists(dirname(wikiFN($id.":".noNS($id)))) // /<ns>/
485 if ($type == 'f' && file_exists(dirname(wikiFN($id.":".noNS($id))))) $type = 'd';
489 * page target id = global id
491 $target = $id;
501 $nsa = array( $id.":".noNS($id),
502 $id,
503 $id.":".$conf['start']
528 $data[]=array( 'id' => $id
531 ,'target' => $target // id to be used in the menu
532 … ,'title' => ($conf['useheading'] && ($title=p_get_first_heading($target)))?$title:$id // NS title
556 * array('id'=>1, 'parent_id'=>0, 'foo'=>'bar'),
557 * array('id'=>2, 'parent_id'=>1, 'foo'=>'barr'),
558 * array('id'=>3, 'parent_id'=>1, 'foo'=>'barrr')
562 function array2tree($source_arr, $parent_id, $key_children='child_nodes', $key_id='id', $key_parent…