Home
last modified time | relevance | path

Searched refs:OutlineSection (Results 1 – 6 of 6) sorted by relevance

/plugin/combo/ComboStrap/
H A DOutlineSection.php6 class OutlineSection extends TreeNode class
85 public static function createOutlineRoot(Outline $outlineContext): OutlineSection
87 return new OutlineSection($outlineContext, null);
103 …tatic function createFromEnterHeadingCall(Outline $outline, Call $enterHeadingCall): OutlineSection
105 return new OutlineSection($outline, $enterHeadingCall);
108 public function getFirstChild(): OutlineSection
117 public function addContentCall(Call $actualCall): OutlineSection
126 public function addHeaderCall(Call $actualCall): OutlineSection
155 public function setStartPosition(int $startPosition): OutlineSection
161 public function setEndPosition(int $endFileIndex): OutlineSection
[all …]
H A DOutlineVisitor.php26 * @var OutlineSection The last section to be printed
28 private OutlineSection $lastSectionToBePrinted;
89 * @param OutlineSection $outlineSection
95 …private function toHtmlSectionOutlineCallsRecurse(OutlineSection $outlineSection, array &$totalCom…
226 …function addSectionEditButtonComboFormatIfNeeded(OutlineSection $outlineSection, int $sectionSeque…
250 private function getIsLastSectionToBePrinted(OutlineSection $outlineSection): bool
256 * @return OutlineSection - the last section to be printed
258 private function getLastSectionToBePrinted(): OutlineSection
263 private function getLastSectionToBePrintedRecurse(OutlineSection $section): OutlineSection
303 private function getAdCall(OutlineSection $outlineSection): ?Call
H A DOutline.php89 private OutlineSection $rootSection;
91 private OutlineSection $actualSection; // the actual section that is created
141 $this->rootSection = OutlineSection::createOutlineRoot($this)
267 $newOutlineSection = OutlineSection::createFromEnterHeadingCall($this, $actualCall);
453 public function getRootOutlineSection(): OutlineSection
647 $collectCalls = function (OutlineSection $outlineSection) use (&$totalInstructionCalls) {
661 …$collectCalls = function (OutlineSection $outlineSection) use (&$totalInstructionCalls, &$sectionS…
751 $collectTableOfContent = function (OutlineSection $outlineSection) use (&$tableOfContent) {
791 $collectCalls = function (OutlineSection $outlineSection) use (&$totalInstructionCalls) {
H A DPermalinkTag.php76 $fragment = OutlineSection::textToHtmlSectionId($fragment);
105 $fragment = OutlineSection::textToHtmlSectionId($fragment);
H A DMarkupRef.php190 $fragment = OutlineSection::textToHtmlSectionId($fragment);
338 $fragment = OutlineSection::textToHtmlSectionId($fragment);
H A DFetcherPageBundler.php243 $h1Section = OutlineSection::createFromEnterHeadingCall($outline, $enterHeading)