5 require_once(
"libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"../../../Base.php");
8 use \ILIAS\UI\Component as
C;
9 use \ILIAS\UI\Implementation\Component as
I;
13 public function __construct(
string $label, array $children = [])
15 $this->label = $label;
16 $this->children = $children;
24 return $this->children;
30 public function getChildren($record, $environment = null) : array
32 return $record->getChildren();
39 ) :
C\Tree\Node\Node {
40 return $factory->simple($record->getLabel());
51 $factory =
new class extends NoUIFactory {
52 public function tree()
54 return new I\Tree\Factory();
64 $n1 =
new DataNode(
'1', [$n11, $n12]);
70 $f = $this->getUIFactory();
71 $this->tree =
$f->tree()->expandable($label, $recursion)
77 $html = str_replace([
"\n",
"\r",
"\t"],
"", $html);
78 $html = preg_replace(
'# {2,}#',
" ", $html);
84 $r = $this->getDefaultRenderer();
85 $html = $r->render($this->tree);
88 <ul
id=
"id_1" class=
"il-tree" role=
"tree" aria-label=
"label">
89 <li
id=
"" class=
"il-tree-node node-simple expandable" role=
"treeitem" aria-expanded=
"false">
90 <span
class=
"node-line"><span
class=
"node-label">1</span></span>
93 <li
id=
"" class=
"il-tree-node node-simple" role=
"none">
94 <span
class=
"node-line"><span
class=
"node-label">1.1</span></span>
96 <li
id=
"" class=
"il-tree-node node-simple expandable" role=
"treeitem" aria-expanded=
"false">
97 <span
class=
"node-line"><span
class=
"node-label">1.2</span></span>
100 <li
id=
"" class=
"il-tree-node node-simple" role=
"none">
101 <span
class=
"node-line"><span
class=
"node-label">1.2.1</span></span>
107 <li
id=
"" class=
"il-tree-node node-simple" role=
"none">
108 <span
class=
"node-line"><span
class=
"node-label">2</span></span>
114 $this->brutallyTrimHTML($expected),
115 $this->brutallyTrimHTML($html)
Provides common functionality for UI tests.
getChildren($record, $environment=null)
__construct(string $label, array $children=[])
Tests for the Expandable Tree.
build(C\Tree\Node\Factory $factory, $record, $environment=null)