Lines Matching refs:getConf

49                 'collapsibleSections'        => (int) $this->getConf('collapsibleSections'),
50 'fixedTopNavbar' => (int) $this->getConf('fixedTopNavbar'),
51 'showSemanticPopup' => (int) $this->getConf('showSemanticPopup'),
52 'sidebarOnNavbar' => (int) $this->getConf('sidebarOnNavbar'),
53 'tagsOnTop' => (int) $this->getConf('tagsOnTop'),
54 'tocAffix' => (int) $this->getConf('tocAffix'),
55 'tocCollapseOnScroll' => (int) $this->getConf('tocCollapseOnScroll'),
56 'tocCollapsed' => (int) $this->getConf('tocCollapsed'),
57 'tocLayout' => $this->getConf('tocLayout'),
58 'useAnchorJS' => (int) $this->getConf('useAnchorJS'),
59 'useAlternativeToolbarIcons' => (int) $this->getConf('useAlternativeToolbarIcons'),
60 'disableSearchSuggest' => (int) $this->getConf('disableSearchSuggest'),
68 if (!defined('MAX_FILE_SIZE') && $pagesize = $this->getConf('domParserMaxPageSize')) {
145 $content = tpl_include_page($location, 0, 1, $this->getConf('useACL'));
198 public function getConf($key, $default = false)
250 return $value && page_findnearest(tpl_getConf('cookieLawBannerPage'), $this->getConf('useACL')) && ($ACT == 'show');
258 if ($this->getConf('showLandingPage')) {
262 return page_findnearest($conf['sidebar'], $this->getConf('useACL'));
270 if ($this->getConf('sidebarPosition') == 'right') {
274 return page_findnearest(tpl_getConf('rightSidebar'), $this->getConf('useACL'));
278 return ($value && (bool) preg_match_all($this->getConf('landingPages'), $ID));
282 if ($this->getConf('showLandingPage')) {
290 return $value && ($this->getConf('bootstrapTheme') == 'bootswatch');
294 if (!$this->getConf('tocAffix')) {
312 if ($this->getConf('tocLayout') !== 'default') {
364 $avatar_provider = $this->getConf('useAvatar');
389 $office365_url = rtrim($this->getConf('office365URL'), '/');
394 $gravatar_url = rtrim($this->getConf('gravatarURL'), '/') . '/';
395 $libavatar_url = rtrim($this->getConf('libavatarURL'), '/') . '/';
430 $page_on_panel = $this->getConf('pageOnPanel');
431 $bootstrap_theme = $this->getConf('bootstrapTheme');
442 if (!$this->getConf('tableFullWidth')) {
464 $bootswatch_theme = $this->getConf('bootswatchTheme');
466 if ($this->getConf('showThemeSwitcher')) {
483 return array_diff($this->getBootswatchThemeList(), $this->getConf('hideInThemeSwitcher'));
493 $bootstrap_theme = $this->getConf('bootstrapTheme');
513 if ($this->getConf('fixedTopNavbar')) {
517 if ($this->getConf('tocCollapseSubSections')) {
556 $date_format = $this->getConf('pageInfoDateFormat');
557 $page_info = $this->getConf('pageInfo');
586 if ($this->getConf('useAvatar')) {
637 if ($this->getConf('showTranslation') && $translation = $this->getPlugin('translation')) {
759 if (!$this->getConf('useGoogleAnalytics')) {
763 if (!$google_analitycs_id = $this->getConf('googleAnalyticsTrackID')) {
767 if ($this->getConf('googleAnalyticsNoTrackAdmin') && $INFO['isadmin']) {
771 if ($this->getConf('googleAnalyticsNoTrackUsers') && isset($_SERVER['REMOTE_USER'])) {
776 if (preg_match_all($this->getConf('googleAnalyticsNoTrackPages'), $ID)) {
791 if ($this->getConf('googleAnalyticsAnonymizeIP')) {
795 if ($this->getConf('googleAnalyticsTrackActions')) {
989 if ($this->getConf('browserTitleShowNS') && $ACT == 'show') {
994 $ns_separator = sprintf(' %s ', $this->getConf('browserTitleCharSepNS'));
1032 if ($this->getConf('browserTitleOrderNS') == 'normal') {
1044 $this->getConf('browserTitle')
1060 if (!$this->getConf('themeByNamespace')) {
1223 if ($this->getConf('showNavbar') === 'logged' && !$_SERVER['REMOTE_USER']) {
1230 $navbar = $this->toBootstrapNav(tpl_include_page('navbar', 0, 1, $this->getConf('useACL')), 'navbar');
1303 $page = page_findnearest($page, $this->getConf('useACL'));
1309 $output = $this->normalizeContent($this->toBootstrapNav(tpl_include_page($page, 0, 1, $this->getConf('useACL')), 'pills', true));
1336 $right_sidebar = $this->getConf('rightSidebar');
1337 $left_sidebar_grid = $this->getConf('leftSidebarGrid');
1338 $right_sidebar_grid = $this->getConf('rightSidebarGrid');
1340 if (!$this->getConf('showSidebar')) {
1347 if ($this->getConf('sidebarPosition') == 'left') {
1355 if ($this->getConf('sidebarPosition') == 'right') {
1359 if ($this->getConf('showRightSidebar')
1360 && $this->getConf('sidebarPosition') == 'left') {
1547 foreach ($this->getConf('tableStyle') as $class) {
2123 $fluid_container = $this->getConf('fluidContainer');
2124 $fixed_top_nabvar = $this->getConf('fixedTopNavbar');
2147 $show_right_sidebar = $this->getConf('showRightSidebar');
2148 $show_left_sidebar = $this->getConf('showSidebar');
2149 $fluid_container = $this->getConf('fluidContainer');
2151 if ($this->getConf('showLandingPage') && (bool) preg_match($this->getConf('landingPages'), $ID)) {
2156 foreach (explode(' ', $this->getConf('leftSidebarGrid')) as $grid) {
2163 foreach (explode(' ', $this->getConf('rightSidebarGrid')) as $grid) {
2296 if ($this->getConf('tocLayout') !== 'navbar') {
2303 $out .= '<div class="panel-body toc-body collapse ' . (!$this->getConf('tocCollapsed') ? 'in' : '') . '">' . DOKU_LF;