Lines Matching refs:prefix

277  * @param string $prefix inserted before each line
281 function my_breadcrumbs($prefix = '') {
291 echo $prefix . "<nav id=\"navBreadCrumbs\">\n";
292 echo $prefix . "\t<h4>" . $lang['breadcrumb'] . "</h4>\n";
293 echo $prefix . "\t<ol reversed>\n";
299 echo $prefix . "\t\t<li" . ($i == $last ? ' class="current"' : '') . '><bdi>' . tpl_link(wl($id), hsc($name), '', true) . "</bdi></li>\n";
301 echo $prefix . "\t</ol>\n";
302 echo $prefix . "</nav>\n";
316 * @param string $prefix to be added before each line
319 function my_youarehere($prefix = '') {
333 echo $prefix . "<nav id=\"navYouAreHere\">\n";
334 echo $prefix . "\t<h4>" . $lang['youarehere'] . "</h4>\n";
335 echo $prefix . "\t<ol>\n";
339 echo $prefix . "\t\t<li class=\"home\">" . tpl_link( $hl, htmlentities(tpl_getLang('homepage')), ' title="' . htmlentities(tpl_getLang('homepage')) . '"', true) . "</li>\n";
340 echo $prefix . "\t\t<li>" . tpl_pagelink(':'.$conf['start'], null, true) . "</li>\n";
342 echo $prefix . "\t\t<li class=\"home\">" . tpl_pagelink(':'.$conf['start'], null, true) . "</li>\n";
353 echo $prefix . "\t\t<li>" . tpl_pagelink($page, null, true) . "</li>\n";
361 echo $prefix . "\t\t<li class=\"current\">";
370 echo $prefix . "\t</ol>\n";
371 echo $prefix . "</nav>\n";
380 * @param string $prefix to be added before each line
384 function my_userinfo($prefix = '') {
395 echo $prefix . '<li class="action profile"><span class="sronly">' . $lang['loggedinas'] .
401 echo $prefix . "<li class=\"action $typ\"><a href=\"" . htmlentities($it->getLink()) .
416 * @param string $prefix to be added before each line
420 function my_toc($prefix = '') {
456 echo $prefix . "<aside id=\"toc\" class=\"toggle hide\">\n";
457 echo $prefix . "\t<button type=\"button\" id=\"toc-menubutton\" class=\"tg_button\" title=\"" . htmlentities($lang['toc']) . '" aria-haspopup="true" aria-controls="toc-menu"><span>' . htmlentities($lang['toc']) . "</span></button>\n" . $prefix . "\t<div id=\"toc-menu\" class=\"tg_content\" role=\"menu\" aria-labelledby=\"toc-menubutton\">";
466 echo "\n" . $prefix . str_repeat("\t", $level*2 + 2) . "<ol>\n";
471 echo "\n" . $prefix . str_repeat("\t", $level*2) . "</ol>\n" . $prefix . str_repeat("\t", $level*2-1) . "</li>\n";
480 echo $prefix . str_repeat("\t", $nl*2 + 1) . '<li role="presentation"><a role="menuitem" href="' . $href . '">' . htmlentities($it['title']) . "</a>";
485 echo "</li>\n" . $prefix . str_repeat("\t", $i*2 + 1) . "</ol>";
488 echo "</li>\n" . $prefix . "\t\t</ol>\n" . $prefix . "\t</div>\n" . $prefix . "</aside>\n";
497 * @param string $prefix to be added before each line
501 function my_lastchange($prefix = '') {
513 echo $prefix . "<p class=\"docInfo\">\n";
514 echo $prefix . "\t<bdi>" . $lang['lastmod'] . "</bdi>\n";
515 echo $prefix . "\t<time datetime=\"" . date('c', $lastmod) . '" title="' . $longDate . '"><span class="print-only">' . $longDate . '</span><span class="noprint">' . datetime_h($lastmod) . "</span></time>\n";
516 echo $prefix . "</p>\n";
520 /* echo $prefix .'<span class="editorname" tabindex="0">' . $lang['by'] . ' <bdi>' . editorinfo($INFO['editor']) . "</bdi></span>\n"; */
528 function my_img_meta($prefix = '') {
539 echo $prefix . '<tr><th>'.$label.'</th><td>';
602 * @param string $prefix to be added before each line
604 function my_cookiebanner($prefix = '') {
617 echo $prefix . "<div id=\"cookiebanner\" class=\"cb_" . $position . "\">\n";
618 echo $prefix . "\t<p class=\"cb_info\"><span class=\"cb_icon\"></span>\n";
619 echo $prefix . "\t\t<span class=\"cb_msg\">". $msg . "</span>\r";
620 echo $prefix . "\t</p>\n";
621 echo $prefix . "\t<p class=\"cb_action\">\n";
622 echo $prefix . "\t\t<button>" . hsc(tpl_getLang('cookie_consent')) . "</button>\n";
623 echo $prefix . "\t\t";
629 echo $prefix . "\n\t</p>\n" . $prefix . "</div>\n";