Lines Matching refs:class

28  * Utility class
30 class TplUtility
150 * Print the breadcrumbs trace with Bootstrap class
169 echo '<nav id="breadcrumb" aria-label="breadcrumb" class="my-3 d-print-none">' . PHP_EOL;
180 echo '<ol class="breadcrumb py-1 px-2" style="background-color:unset">' . PHP_EOL;
181 print '<li class="pr-2" style="display:flex;font-weight: 200">' . $lang['breadcrumb'] . '</li>';
187 print '<li class="breadcrumb-item active">';
189 print '<li class="breadcrumb-item">';
285 if (!empty($link['class'])) {
286 $htmlLink .= ' class="' . $link['class'] . '" ';
428 * Because the test request environment is wiped out only on the class level,
429 * the class / test function needs to specifically say that it's open
624 $classOffCanvas = "class=\"d-$bootstrapBreakpoint-none\"";
625 $classFixed = "class=\"d-none d-$bootstrapBreakpoint-flex\"";
631 <button id="railbar-offcanvas-open" class="btn" type="button" data-bs-toggle="offcanvas"
635 <div id="railbar-offcanvas" class="offcanvas offcanvas-end"
638 <h5 class="d-none" id="offcanvas-label">Railbar</h5>
641 <button id="railbar-offcanvas-close" class="btn" type="button" data-bs-dismiss="offcanvas"
645 <div id="railbar-offcanvas-body" class="offcanvas-body" style="align-items: center;display: flex;">
656 <div class="tools">
688 <ul class="railbar">
762 $htmlOutput = '<ol class="breadcrumb">' . PHP_EOL;
770 $htmlOutput .= tpl_link(wl($page), '<span class="glyphicon glyphicon-home" aria-hidden="true"></span>', 'title="' . tpl_pagetitle($page, true) . '"', $return = true);
789 // $htmlOutput .= '<li class="active">';
852 * This is a fork of tpl_actionlink where I have added the class parameters
861 * @param string $class the class to be added
867 function renderActionLink($type, $class = '', $pre = '', $suf = '', $inner = '', $return = false)
902 'class="nav-link action ' . $type . ' ' . $class . '" ' .
1579 $header = '<div class="container p-3" style="text-align: center;position:relative;z-index:100">Welcome to the <a href="' . $domain . '/">Strap template</a>.<br/>
1586 return "<div class=\"d-print-none\">$header</div>";
1598 $footer = '<div class="container p-3" style="text-align: center">Welcome to the <a href="' . $domain . '/strap">Strap template</a>. To get started, create a page with the id ' . html_wikilink(':' . $footerPageName) . ' to create a footer.</div>';
1602 return "<div class=\"d-print-none\">$footer</div>";
1610 $poweredBy = "<div class=\"mx-auto\" style=\"width: 300px;text-align: center;margin-bottom: 1rem\">";