-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAssociativeArrayTree.php
47 lines (39 loc) · 1.19 KB
/
AssociativeArrayTree.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
namespace Vhood\TreeType\Type;
use Vhood\TreeType\Contract\TreeType;
use Vhood\TreeType\Converter\AssociativeArrayTreeConverter;
use Vhood\TreeType\Exception\InvalidStructureException;
use Vhood\TreeType\Service\AssociativeArrayTreeService;
class AssociativeArrayTree implements TreeType
{
private $nodes;
private $childrenKey;
private $idKey;
/**
* @param array $tree
* @param string $childrenKey
* @param null|string $idKey
* @return void
* @throws InvalidStructureException
*/
public function __construct(array $tree, $childrenKey = 'children', $idKey = null)
{
$this->childrenKey = $childrenKey;
$this->idKey = $idKey;
if (empty($tree)) {
throw new InvalidStructureException("Empty tree");
}
if ($idKey) {
$treeService = new AssociativeArrayTreeService($tree, $childrenKey, $idKey);
$treeService->validateIdField($idKey);
}
$this->nodes = array_values($tree);
}
/**
* {@inheritdoc}
*/
public function initConverter()
{
return new AssociativeArrayTreeConverter($this->nodes, $this->childrenKey, $this->idKey);
}
}