2013-06-14 13:51:44 +02:00
|
|
|
<?php
|
2014-02-05 12:35:44 +01:00
|
|
|
|
2013-06-14 13:51:44 +02:00
|
|
|
|
2014-02-03 17:03:05 +01:00
|
|
|
if ($this->auth()->isAuthenticated()) {
|
2014-01-27 09:45:21 +01:00
|
|
|
echo $this->partial(
|
|
|
|
'parts/menu.phtml',
|
|
|
|
array(
|
|
|
|
'items' => $menu->getChildren(),
|
|
|
|
'url' => $url
|
|
|
|
)
|
|
|
|
);
|
2014-02-03 17:03:05 +01:00
|
|
|
}
|
2013-06-14 13:51:44 +02:00
|
|
|
|