Lines Matching defs:display

149             // second column is the display 'name' (used when sorting by 'name')
150 // this also avoids rebuilding the display name when building links later (DRY)
153 // third column: cache the display name; taken from metadata => 1st heading
167 $row['display'] = '';
241 /* provide custom display formatting via string templating {...} */
244 $display = $opt['display'];
245 $matched = preg_match_all('/\{(.+?)\}/', $display, $matches, PREG_SET_ORDER);
271 $display = str_replace($match[0], $value, $display);
275 // try to match any metadata field; to allow for plain single word display settings
276 // e.g. display=title or display=name
277 } elseif (isset($row[$display])) {
278 $display = $row[$display];
281 $display = $row['name'];
283 $row['display'] = $display;
410 * used for display only ($dformat is used for sorting/grouping)
755 // args : $level, $name, $id, $_, $abstract, $display
768 $display = p_get_metadata($id, 'title');
771 $display = '';
773 // args : $level, $name, $id, $_, $abstract, $display
774 $results[] = [$hl, $cur_ns[$i], $ns_start, '', '', $display];
840 [$level, $name, $id, $_, $abstract, $display] = $line;
882 // finally display the appropriate heading or page link(s)
888 if ($opt['nstitle'] && !empty($display)) {
889 $heading = $display;
909 $display = $this->proper($display);
911 $link = $this->htmlWikilink($id, $display, $abstract, $opt);
962 * @param string $display
970 string $display,
977 $link = html_wikilink($id, $display);
1086 // CSS for the various display options
1103 [$level, $name, $id, $_, $abstract, $display] = $line;
1115 // finally display the appropriate heading...
1121 if ($opt['nstitle'] && !empty($display)) {
1122 $heading = $display;
1142 $display = $this->proper($display);
1144 $link = $this->htmlWikilink($id, $display, $abstract, $opt);
1151 // and put it all together for display