ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
KSDocumentationTreeRecursion Class Reference

Tree Recursion, putting Entries into a Tree. More...

+ Inheritance diagram for KSDocumentationTreeRecursion:
+ Collaboration diagram for KSDocumentationTreeRecursion:

Public Member Functions

 __construct (Entries $entries, URI $parent_uri, string $current_opened_entry_id)
 
- Public Member Functions inherited from ILIAS\UI\Component\Tree\TreeRecursion
 getChildren ( $record, $environment=null)
 Get a list of records (that list can also be empty). More...
 
 build (Node\Factory $factory, $record, $environment=null)
 Build and return a Node. More...
 

Protected Member Functions

 getNodeUri (Entry $a_node)
 

Protected Attributes

Entries $entries
 
URI $parent_uri
 
Entry $current_node
 

Detailed Description

Tree Recursion, putting Entries into a Tree.

Definition at line 28 of file KSDocumentationTreeRecursion.php.

Constructor & Destructor Documentation

◆ __construct()

KSDocumentationTreeRecursion::__construct ( Entries  $entries,
URI  $parent_uri,
string  $current_opened_entry_id 
)

Definition at line 34 of file KSDocumentationTreeRecursion.php.

References $entries, $parent_uri, ILIAS\UI\Component\Tree\TreeRecursion\build(), ILIAS\UI\Component\Tree\TreeRecursion\getChildren(), getNodeUri(), and null.

35  {
36  $this->entries = $entries;
37  $this->parent_uri = $parent_uri;
38  $this->current_node = $entries->getRootEntry();
39  if ($current_opened_entry_id) {
40  $this->current_node = $entries->getEntryById($current_opened_entry_id);
41  }
42  }
+ Here is the call graph for this function:

Member Function Documentation

◆ getNodeUri()

KSDocumentationTreeRecursion::getNodeUri ( Entry  $a_node)
protected

Definition at line 70 of file KSDocumentationTreeRecursion.php.

Referenced by __construct().

70  : URI
71  {
72  return $this->parent_uri->withParameter('node_id', $a_node->getId());
73  }
+ Here is the caller graph for this function:

Field Documentation

◆ $current_node

Entry KSDocumentationTreeRecursion::$current_node
protected

Definition at line 32 of file KSDocumentationTreeRecursion.php.

◆ $entries

Entries KSDocumentationTreeRecursion::$entries
protected

Definition at line 30 of file KSDocumentationTreeRecursion.php.

Referenced by __construct().

◆ $parent_uri

URI KSDocumentationTreeRecursion::$parent_uri
protected

Definition at line 31 of file KSDocumentationTreeRecursion.php.

Referenced by __construct().


The documentation for this class was generated from the following file: