Lines Matching defs:data

92      * @param array $data - the data array from the handler
95 public static function treeProcessLeaf(string &$html, MarkupPath $page, array $data, string $type)
103 $pageAttributes = $data[self::PAGE_ATTRIBUTES];
104 $pageInstructions = $data[self::PAGE_INSTRUCTIONS];
279 public static function renderEnterTag(TagAttributes $pageExplorerTagAttributes, array $data)
385 $indexInstructions = $data[PageExplorerTag::INDEX_INSTRUCTIONS];
386 $indexAttributes = $data[PageExplorerTag::INDEX_ATTRIBUTES];
434 $parentInstructions = $data[PageExplorerTag::PARENT_INSTRUCTIONS];
435 $parentAttributes = $data[PageExplorerTag::PARENT_ATTRIBUTES];
487 $namespaceEnterTag = TagAttributes::createFromCallStackArray($data[PageExplorerTag::NAMESPACE_ATTRIBUTES])
491 $pageEnterTag = TagAttributes::createFromCallStackArray($data[PageExplorerTag::PAGE_ATTRIBUTES])
497 $pageInstructions = $data[PageExplorerTag::PAGE_INSTRUCTIONS];
498 $pageAttributes = $data[PageExplorerTag::PAGE_ATTRIBUTES];
499 $namespaceInstructions = $data[PageExplorerTag::NAMESPACE_INSTRUCTIONS];
500 $namespaceAttributes = $data[PageExplorerTag::NAMESPACE_ATTRIBUTES];
610 * data-wiki-id, needed for the
616 $pageExplorerTagAttributes->addOutputAttributeValue("data-" . TagAttributes::WIKI_ID, $namespaceId);
618 $pageExplorerTagAttributes->addBooleanOutputAttributeValue("data-" . TagAttributes::WIKI_ID);
637 self::treeProcessTree($returnedXhtml, $tree, $data);
653 * @param array $data - the data array from the handler
657 function treeProcessTree(string &$html, PathTreeNode $pathTreeNode, array $data)
708 PageExplorerTag::treeProcessLeaf($html, $homePage, $data, PageExplorerTag::HOME_TYPE);
714 $namespaceInstructions = $data[PageExplorerTag::NAMESPACE_INSTRUCTIONS];
727 * <button data-bs-target="#id" data-bs-collapse="collapse">
748 ->addOutputAttributeValue("data-bs-target", "#$id")
749 ->addOutputAttributeValue("data-" . TagAttributes::WIKI_ID, $containerPath->getWikiId())
750 ->addOutputAttributeValue("data-bs-toggle", "collapse")
785 self::treeProcessTree($html, $containerTreeNode, $data);
804 PageExplorerTag::treeProcessLeaf($html, $page, $data, PageExplorerTag::PAGE_TYPE);