Searched refs:TOC (Results 1 – 25 of 49) sorted by relevance
12
/plugin/siteexport/action/ |
D | aggregate.php | 88 $TOC = "<toc merge mergeheader"; 92 $TOC .= " mergehint"; 95 $TOC .= ">\n"; 101 $TOC .= " * [[{$id}|{$title}]]\n"; 104 $TOC .= "</toc>"; 117 if (empty($TOC)) { return true; } 123 $html = p_render($renderer, p_get_instructions($TOC), $INFO);
|
/plugin/ifauthex/ |
D | syntax.php | 155 global $TOC; 156 $renderer->meta['ifauthex.originalGlobalToc'] = &$TOC; 157 $TOC = is_array($TOC) ? [] : null; 181 global $TOC; 182 $TOC = &$renderer->meta['ifauthex.originalGlobalToc'];
|
/plugin/combo/ComboStrap/ |
D | Toc.php | 46 global $TOC; 47 if ($TOC === null) { 51 ->setValue($TOC); 211 global $TOC; 212 if (!is_array($TOC)) $TOC = $plugin->getTOC(); //if TOC wasn't requested yet 213 if (!is_array($TOC)) {
|
/plugin/rplus/ |
D | renderer.php | 168 global $TOC; 170 if (!is_array($TOC)) { 171 $TOC = $this->toc; 194 if (count($TOC) > $conf['tocminheads']) { 358 global $TOC; 359 if (!is_array($TOC)) $TOC = $plugin->getTOC(); //if TOC wasn't requested yet 360 if (!is_array($TOC)) {
|
/plugin/inlinetoc/ |
D | action.php | 39 global $TOC; 40 if ($TOC) { 41 …$html = '<div id="inlinetoc2" class="inlinetoc2">' . html_buildlist($TOC, 'inlinetoc2', array($thi…
|
D | README.md | 21 the TOC plugin which already use the class inlinetoc. 29 - This plugin is largely inspired by the TOC
|
/plugin/intoc/ |
D | action.php | 37 global $TOC; 39 if ($TOC) { 41 . html_buildlist($TOC, 'intoc', array($this, 'html_list_intoc'))
|
D | plugin.info.txt | 6 desc Moves a collapsible TOC of a page where you need it
|
/plugin/ajaxpeon/ |
D | action.php | 153 global $TOC; 155 $oldtoc = $TOC; 158 $TOC = $oldtoc; 204 global $TOC; 205 $oldtoc = $TOC; 207 $TOC = $oldtoc;
|
/plugin/wikistats/ |
D | syntax.php | 180 global $TOC; 204 $TOC = p_get_metadata($ID,'description tableofcontents'); 206 $TOC = NULL; 356 global $TOC; 362 …$TOC[] = Array('hid' => 'resources', 'title' => $this->getLang('resources_title'), 'type' => 'ul',… 405 global $TOC; 414 …$TOC[] = Array('hid' => 'tags', 'title' => $this->getLang('tags_title'), 'type' => 'ul', 'level' =… 458 global $TOC; 464 …$TOC[] = Array('hid' => 'namespaces', 'title' => $this->getLang('namespaces_title'), 'type' => 'ul…
|
/plugin/offline/ |
D | renderer.php | 146 global $TOC; 147 $TOC = $this->toc; 380 global $TOC; 387 if(is_array($TOC)){ 389 $toc = $TOC; 415 $TOC = $toc; // avoid later rebuild
|
/plugin/tocsidebar/ |
D | README.md | 2 Add TOC for selected pages to sidebar or current page. 3 A text selection box or index enables loading TOC for a new id.
|
/plugin/tocselect/ |
D | README.md | 2 Add TOC for selected pages to sidebar or current page. 3 A text selection box or index enables loading TOC for a new id.
|
/plugin/siteexport/renderer/ |
D | pdf.php | 51 global $TOC, $ID, $INFO; 59 $TOC = $newMeta; 68 global $TOC, $ID; 73 $TOC = $this->toc = array(); 79 $TOC = $this->toc; 84 $meta['description']['tableofcontents'] = $TOC;
|
/plugin/pagetemplater/ |
D | action.php | 38 global $ACT, $INFO, $TOC, $ID; 43 $oldtoc = $TOC; 68 $TOC = $oldtoc;
|
/plugin/nodetailsxhtml/ |
D | renderer.php | 57 global $TOC, $ID, $INFO, $conf; 77 $TOC = $newMeta['tableofcontents']; 86 global $TOC, $ID; 93 $TOC = $this->toc = array(); 99 $TOC = $this->toc; 104 $meta['description']['tableofcontents'] = $TOC;
|
/plugin/header2/ |
D | renderer.php | 102 global $TOC; 103 $TOC = $this->toc;
|
/plugin/header3/ |
D | renderer.php | 121 global $TOC; 122 $TOC = $this->toc;
|
/plugin/footnotestyle/ |
D | renderer.php | 126 global $TOC; 127 $TOC = $this->toc;
|
/plugin/toctweak/ |
D | plugin.info.txt | 6 desc Show tailored table of contents (TOC) of specified page/section in the page content
|
/plugin/webcomponent/_test/data/pages/ |
D | heading.txt | 5 …ing a [[https://spec.commonmark.org/0.29/#atx-heading|Atx Markdown heading]] and should show a TOC.
|
/plugin/webcode/_test/data/pages/ |
D | webcode.txt | 7 * [[across_section]]: Across section, the webcode should not break the TOC
|
D | across_section.txt | 6 * the TOC should not break
|
/plugin/exttab3/ |
D | example.txt | 81 The headline will be shown in TOC. 94 The headline will be shown in TOC.
|
/plugin/blogtng/helper/ |
D | entry.php | 844 global $ID, $TOC, $conf; 861 $backupTOC = $TOC; // the renderer overwrites the global $TOC 869 if ($TOC && $backupTOC !== $TOC && $info['toc']){ 870 $renderer->toc = array_merge($renderer->toc, $TOC); 871 $TOC = null; // Reset the global toc as it is included in the renderer now
|
12