‪TYPO3CMS  10.4
AbstractTreeRenderer.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
21 
26 {
34  abstract public function ‪renderNode(‪TreeRepresentationNode $node, $recursive = true);
35 
43  abstract public function ‪renderNodeCollection(‪TreeNodeCollection $collection, $recursive = true);
44 
52  abstract public function ‪renderTree(‪AbstractTree $tree, $recursive = true);
53 }
‪TYPO3\CMS\Backend\Tree\Renderer\AbstractTreeRenderer\renderNodeCollection
‪mixed renderNodeCollection(TreeNodeCollection $collection, $recursive=true)
‪TYPO3\CMS\Backend\Tree\TreeRepresentationNode
Definition: TreeRepresentationNode.php:24
‪TYPO3\CMS\Backend\Tree\Renderer
Definition: AbstractTreeRenderer.php:16
‪TYPO3\CMS\Backend\Tree\Renderer\AbstractTreeRenderer\renderTree
‪mixed renderTree(AbstractTree $tree, $recursive=true)
‪TYPO3\CMS\Backend\Tree\TreeNodeCollection
Definition: TreeNodeCollection.php:25
‪TYPO3\CMS\Backend\Tree\Renderer\AbstractTreeRenderer\renderNode
‪mixed renderNode(TreeRepresentationNode $node, $recursive=true)
‪TYPO3\CMS\Backend\Tree\Renderer\AbstractTreeRenderer
Definition: AbstractTreeRenderer.php:26
‪TYPO3\CMS\Backend\Tree\AbstractTree
Definition: AbstractTree.php:24