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 D | confutils.php | 413 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 D | Ajax.php | 58 $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 D | common.php | 327 $JSINFO['useHeadingNavigation'] = (int)useHeading('navigation'); 328 $JSINFO['useHeadingContent'] = (int)useHeading('content'); 418 if (useHeading('navigation')) { 1276 // if useheading is enabled, purge the cache of all linking pages 1277 if (useHeading('content')) {
|
H A D | template.php | 986 * If useheading is enabled this will use the first headline else 1005 if (useHeading('navigation')) {
|
/dokuwiki/inc/Ui/ |
H A D | Backlinks.php | 34 echo html_wikilink(':' . $blink, useHeading('navigation') ? null : $blink);
|
H A D | Index.php | 91 // 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 D | Search.php | 512 if (!useHeading('navigation') && $ns = getNS($id)) {
|
/dokuwiki/inc/Action/ |
H A D | Search.php | 71 $this->pageLookupResults = ft_pageLookup($QUERY, true, useHeading('navigation'), $after, $before);
|
/dokuwiki/lib/plugins/revert/ |
H A D | admin.php | 171 echo html_wikilink(':' . $recent['id'], (useHeading('navigation')) ? null : $recent['id']);
|
/dokuwiki/conf/ |
H A D | dokuwiki.php | 50 $conf['useheading'] = 0; //use the first heading in a page as its name
|
/dokuwiki/inc/ChangeLog/ |
H A D | RevisionInfo.php | 190 $display_name = useHeading('navigation') ? hsc(p_get_first_heading($id)) : $id;
|
/dokuwiki/lib/plugins/config/settings/ |
H A D | config.metadata.php | 116 $meta['useheading'] = ['multichoice', '_choices' => [0, 'navigation', 'content', 1]];
|
/dokuwiki/inc/parser/ |
H A D | metadata.php | 717 if (useHeading('content') && $id) {
|
H A D | xhtml.php | 1823 if (useHeading($linktype) && $id) {
|
/dokuwiki/ |
H A D | feed.php |
|
/dokuwiki/inc/Remote/ |
H A D | ApiCore.php | 344 useHeading('navigation') ? p_get_first_heading($id) : $id
|