Lines Matching defs:item
65 * Index item formatter
69 * @param array $item
74 public function formatListItem($item) // RENAMED from html_list_index()
82 $base = ':' . $item['id'];
84 if ($item['type'] == 'd') {
86 $link = wl($ID, 'idx=' . rawurlencode($item['id']));
87 $html .= '<a href="' . $link . '" title="' . $item['id'] . '" class="idx_dir"' . $nofollow . '><strong>';
92 $html .= html_wikilink(':' . $item['id'], useHeading('navigation') ? null : noNS($item['id']));
98 * Index List item
104 * @param array $item
109 public function tagListItem($item) // RENAMED from html_li_index()
117 if ($item['type'] == 'f') {
118 // scroll to the current item
119 if (isset($INFO) && $item['id'] == $INFO['id'] && $ACT == 'index') {
123 return '<li class="level' . $item['level'] . $class . '" ' . $id . '>';
124 } elseif ($item['open']) {