Lines Matching refs:prefix

968      * @param   string $prefix Sidebar prefix to use when searching.
971 public function sidebarExists(string $prefix = ''): bool argument
975 if (strcasecmp($prefix, 'left') === 0) {
976 $prefix = '';
979 return $this->pageExists($conf['sidebar' . $prefix]);
986 * @param string $prefix Sidebar prefix to use when searching.
991 …public function includeSidebar(string $prefix = '', bool $print = true, bool $parse = true): string argument
996 $confPrefix = preg_replace('/[^a-zA-Z0-9]/', '', ucwords($prefix));
997 $prefix = preg_replace('/[^a-zA-Z0-9]/', '', strtolower($prefix));
1002 if (strcasecmp($prefix, 'left') === 0) {
1003 $prefix = '';
1006 …$sidebarPage = empty($conf[$prefix . 'sidebar']) === true ? $prefix . 'sidebar' : $conf[$prefix . …
1018 if (empty($prefix) === true) {
1060 if (empty($prefix) === true && $this->getConf('sidebarAlwaysShowLeft') === true) {
1063 if ($this->getConf('sidebarAlwaysShow' . ucfirst($prefix)) === true) {
1071 'mikio-sidebar-' . (empty($prefix) === true ? 'left' : $prefix)
1076 if(empty($prefix) === true && $this->getConf('stickyLeftSidebar') === true) {
1416 $prefix = $lang['breadcrumb'];
1428 $prefix = $this->getConf('breadcrumbPrefixText');
1432 $prefix = '<img src="' . $img . '">';
1439 if (empty($prefix) === false) {
1440 $html .= '<li class="prefix">' . $prefix . '</li>';
1500 $prefix = $lang['youarehere'];
1512 $prefix = $this->getConf('youareherePrefixText');
1516 $prefix = '<img src="' . $img . '">';
1521 if (empty($prefix) === false) {
1522 $html .= '<li class="prefix">' . $prefix . '</li>';
2269 $prefix[] = ':' . $INFO['namespace'] . ':';
2272 $prefix[] = ':';
2273 $prefix[] = ':wiki:';
2277 $prefix[] = 'themes/' . $theme . '/images/';
2279 $prefix[] = 'images/';
2282 foreach ($prefix as $pitem) {