initial commit
This commit is contained in:
commit
e869a1cab4
107 changed files with 9029 additions and 0 deletions
13
app/library/Navigation/Navigation.php
Normal file
13
app/library/Navigation/Navigation.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Navigation;
|
||||
|
||||
class Navigation extends Container
|
||||
{
|
||||
public function __construct($config)
|
||||
{
|
||||
foreach($config as $node) {
|
||||
$this->addChild($node);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue