Lines Matching refs:prefix

881      * @param   string $prefix Sidebar prefix to use when searching.
884 public function sidebarExists(string $prefix = '')
888 if (strcasecmp($prefix, 'left') === 0) {
889 $prefix = '';
892 return $this->pageExists($conf['sidebar' . $prefix]);
899 * @param string $prefix Sidebar prefix to use when searching.
904 public function includeSidebar(string $prefix = '', bool $print = true, bool $parse = true)
909 $confPrefix = preg_replace('/[^a-zA-Z0-9]/', '', ucwords($prefix));
910 $prefix = preg_replace('/[^a-zA-Z0-9]/', '', strtolower($prefix));
915 if (strcasecmp($prefix, 'left') === 0) {
916 $prefix = '';
919 $sidebarPage = empty($conf[$prefix . 'sidebar']) === true ? $prefix . 'sidebar' : $conf[$prefix . 'sidebar'];
930 if (empty($prefix) === true) {
967 if (empty($prefix) === true && $this->getConf('sidebarAlwaysShowLeft') === true) {
970 if ($this->getConf('sidebarAlwaysShow' . ucfirst($prefix)) === true) {
978 'mikio-sidebar-' . (empty($prefix) === true ? 'left' : $prefix)
983 if(empty($prefix) === true && $this->getConf('stickyLeftSidebar') === true) {
1293 $prefix = $lang['breadcrumb'];
1305 $prefix = $this->getConf('breadcrumbPrefixText');
1306 $img = $this->getMediaFile('breadcrumb-prefix', false);
1309 $prefix = '<img src="' . $img . '">';
1316 if (empty($prefix) === false) {
1317 $html .= '<li class="prefix">' . $prefix . '</li>';
1380 $prefix = $lang['youarehere'];
1392 $prefix = $this->getConf('youareherePrefixText');
1393 $img = $this->getMediaFile('youarehere-prefix', false);
1396 $prefix = '<img src="' . $img . '">';
1401 if (empty($prefix) === false) {
1402 $html .= '<li class="prefix">' . $prefix . '</li>';
2125 $prefix[] = ':' . $INFO['namespace'] . ':';
2128 $prefix[] = ':';
2129 $prefix[] = ':wiki:';
2133 $prefix[] = 'themes/' . $theme . '/images/';
2135 $prefix[] = 'images/';
2138 foreach ($prefix as $pitem) {