Lines Matching refs:out

572             $out = '<ul class="list-inline">';
575 …$out .= '<li>' . iconify('mdi:file-document-outline', ['class' => 'text-muted']) . ' <span title="…
579 …$out .= '<li>' . iconify('mdi:calendar', ['class' => 'text-muted']) . ' ' . $lang['lastmod'] . ' <…
596 … $out .= '<li class="text-muted">' . $lang['by'] . ' <bdi>' . $user . '</bdi></li>';
598 $out .= '<li>(' . $lang['external_edit'] . ')</li>';
603 …$out .= '<li>' . iconify('mdi:lock', ['class' => 'text-muted']) . ' ' . $lang['lockedby'] . ' ' . …
606 $out .= '</ul>';
609 return $out;
611 echo $out;
781 $out = DOKU_LF;
782 $out .= '// Google Analytics' . DOKU_LF;
783 $out .= 'window.dataLayer = window.dataLayer || [];' . DOKU_LF;
784 $out .= 'function gtag(){dataLayer.push(arguments);}' . DOKU_LF;
785 $out .= 'gtag("js", new Date());' . DOKU_LF;
788 … $out .= 'gtag("config", "' . $google_analitycs_id . '", {"anonimize_ip":true});' . DOKU_LF;
790 $out .= 'gtag("config", "' . $google_analitycs_id . '");' . DOKU_LF;
794 … $out .= 'gtag("event", JSINFO.bootstrap3.mode, {"eventCategory":"DokuWiki"});' . DOKU_LF;
797 $out .= '// End Google Analytics' . DOKU_LF;
799 return $out;
1264 $out = $this->toBootstrapNav($sidebar, 'pills', true);
1265 $out = $this->normalizeContent($out);
1268 $html->load($out, true, false);
1281 $out = $html->save();
1286 return $out;
1289 echo $out;
2293 $out = '';
2294 … $out .= '<script>JSINFO.bootstrap3.toc = ' . json_encode($json_toc) . ';</script>' . DOKU_LF;
2297 $out .= '<!-- TOC START -->' . DOKU_LF;
2298 $out .= '<div class="dw-toc hidden-print">' . DOKU_LF;
2299 …$out .= '<nav id="dw__toc" role="navigation" class="toc-panel panel panel-default small">' . DOKU_…
2300 …$out .= '<h6 data-toggle="collapse" data-target="#dw__toc .toc-body" title="' . $lang['toc'] . '" …
2301 $out .= '<span>' . $lang['toc'] . '</span>';
2302 $out .= ' <i class="caret"></i></h6>' . DOKU_LF;
2303 …$out .= '<div class="panel-body toc-body collapse ' . (!$this->getConf('tocCollapsed') ? 'in' : '…
2304 …$out .= $this->normalizeList(html_buildlist($toc, 'nav toc', 'html_list_toc', 'html_li_default', t…
2305 $out .= '</div>' . DOKU_LF;
2306 $out .= '</nav>' . DOKU_LF;
2307 $out .= '</div>' . DOKU_LF;
2308 $out .= '<!-- TOC END -->' . DOKU_LF;
2311 return $out;