Lines Matching defs:out

482     $out = '<a href="' . $url . '" ';
483 if ($more) $out .= ' ' . $more;
484 $out .= ">$name</a>";
485 if ($return) return $out;
486 echo $out;
504 $out = '<bdi>' . html_wikilink($id, $name) . '</bdi>';
505 if ($return) return $out;
506 echo $out;
513 * Tries to find out which page is parent.
554 $out = sprintf($data, 'button');
564 $out = html_topbtn();
566 $out = html_btn($type, $id, $accesskey, $params, $method);
569 if ($return) return $out;
570 echo $out;
596 $out = sprintf($data, 'link');
623 $out = tpl_link(
632 if ($return) return $out;
633 echo $out;
710 $out = '';
712 $out .= tpl_actionlink($type, $pre, $suf, $inner, true);
714 $out .= tpl_button($type, true);
716 if ($out && $wrapper) $out = "<$wrapper>$out</$wrapper>";
718 if ($return) return $out;
719 echo $out;
720 return (bool)$out;
805 $out = '';
812 $out .= '<span class="bchead">' . $lang['breadcrumb'] . '</span>';
817 $out .= $crumbs_sep;
818 if ($i == $last) $out .= '<span class="curid">';
819 $out .= '<bdi>' . tpl_link(wl($id), hsc($name), 'class="breadcrumbs" title="' . $id . '"', true) . '</bdi>';
820 if ($i == $last) $out .= '</span>';
822 if ($return) return $out;
823 echo $out;
824 return (bool)$out;
855 $out = '';
860 $out .= '<span class="bchead">' . $lang['youarehere'] . ' </span>';
863 $out .= '<span class="home">' . tpl_pagelink(':' . $conf['start'], null, true) . '</span>';
873 $out .= $sep . tpl_pagelink($page, null, true);
880 if ($return) return $out;
881 echo $out;
887 if ($return) return $out;
888 echo $out;
891 $out .= $sep;
892 $out .= tpl_pagelink($page, null, true);
893 if ($return) return $out;
894 echo $out;
895 return (bool)$out;
955 $out = '<bdi>' . $fn . '</bdi>';
956 $out .= ' · ';
957 $out .= $lang['lastmod'];
958 $out .= ' ';
959 $out .= $date;
961 $out .= ' ' . $lang['by'] . ' ';
962 $out .= '<bdi>' . editorinfo($INFO['editor']) . '</bdi>';
964 $out .= ' (' . $lang['external_edit'] . ')';
967 $out .= ' · ';
968 $out .= $lang['lockedby'];
969 $out .= ' ';
970 $out .= '<bdi>' . editorinfo($INFO['locked']) . '</bdi>';
973 return $out;
975 echo $out;
1633 $out = '';
1634 if ($wrap) $out .= '<div class="license">';
1638 $out .= '<a href="' . $lic['url'] . '" rel="license"' . $target;
1639 $out .= '><img src="' . DOKU_BASE . $src . '" alt="' . $lic['name'] . '" /></a>';
1640 if (!$imgonly) $out .= ' ';
1644 $out .= $lang['license'] . ' ';
1645 $out .= '<bdi><a href="' . $lic['url'] . '" rel="license" class="urlextern"' . $target;
1646 $out .= '>' . $lic['name'] . '</a></bdi>';
1648 if ($wrap) $out .= '</div>';
1650 if ($return) return $out;
1651 echo $out;
1664 * @param bool $useacl Include the page only if the ACLs check out?