Lines Matching refs:list
401 function insertListInTable($list,$type,&$contents) { argument
403 if($list) $contents .= "<tr><td $border>$type</td><td>$list</td></tr>\n";
414 $list = $this->create_list(array_keys($isreferencedby),$contents);
415 $this->insertListInTable($list,'Backlinks (isreferencedby)',$contents);
418 $list = $this->create_list(array_keys($references),$contents);
419 $this->insertListInTable($list,'Links (references)',$contents);
422 $list = $this->create_list(array_keys($media),$contents);
423 $this->insertListInTable($list,'Media',$contents);
429 $list = $this->create_list(array_keys($haspart),$contents);
430 $this->insertListInTable($list,'haspart',$contents);
433 $list = $this->create_list(array_keys($subject),$contents);
434 $this->insertListInTable($list,'Subject',$contents);
440 $list = "\n<ol>\n";
442 $list .= '<li>'. $ar[$i] . "</li>\n";
444 $list .= "</ol>\n";
445 return $list;