Home
last modified time | relevance | path

Searched +full:useheading -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 16 of 16) sorted by relevance

/dokuwiki/inc/
H A Dconfutils.php413 function useHeading($linktype)
415 static $useHeading = null;
416 if (defined('DOKU_UNITTEST')) $useHeading = null; // don't cache during unit tests
418 if (is_null($useHeading)) {
421 if (!empty($conf['useheading'])) {
422 switch ($conf['useheading']) {
424 $useHeading['content'] = true;
428 $useHeading['navigation'] = true;
431 $useHeading['content'] = true;
432 $useHeading['navigatio
393 function useHeading($linktype) { global() function
[all...]
H A DAjax.php58 $data = ft_pageLookup($query, true, useHeading('navigation'));
66 if (useHeading('navigation')) {
369 // If 'useheading' option is 'always' or 'content',
371 if ($conf['useheading'] == '1' || $conf['useheading'] == 'content') {
H A Dcommon.php324 $JSINFO['useHeadingNavigation'] = (int) useHeading('navigation');
325 $JSINFO['useHeadingContent'] = (int) useHeading('content');
424 if (useHeading('navigation')) {
1308 // if useheading is enabled, purge the cache of all linking pages
1309 if (useHeading('content')) {
H A Dtemplate.php985 * If useheading is enabled this will use the first headline else
1004 if (useHeading('navigation')) {
/dokuwiki/inc/Ui/
H A DBacklinks.php34 echo html_wikilink(':' . $blink, useHeading('navigation') ? null : $blink);
H A DIndex.php91 // default is noNSorNS($id), but we want noNS($id) when useheading is off FS#2605
92 $html .= html_wikilink(':' . $item['id'], useHeading('navigation') ? null : noNS($item['id']));
H A DSearch.php512 if (!useHeading('navigation') && $ns = getNS($id)) {
/dokuwiki/inc/Action/
H A DSearch.php71 $this->pageLookupResults = ft_pageLookup($QUERY, true, useHeading('navigation'), $after, $before);
/dokuwiki/lib/plugins/revert/
H A Dadmin.php171 echo html_wikilink(':' . $recent['id'], (useHeading('navigation')) ? null : $recent['id']);
/dokuwiki/conf/
H A Ddokuwiki.php50 $conf['useheading'] = 0; //use the first heading in a page as its name
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php190 $display_name = useHeading('navigation') ? hsc(p_get_first_heading($id)) : $id;
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php116 $meta['useheading'] = ['multichoice', '_choices' => [0, 'navigation', 'content', 1]];
/dokuwiki/inc/parser/
H A Dmetadata.php715 if (useHeading('content') && $id) {
H A Dxhtml.php1823 if (useHeading($linktype) && $id) {
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/Remote/
H A DApiCore.php344 useHeading('navigation') ? p_get_first_heading($id) : $id