fix directory structure for branch 1.5 & bundle ChillMain

This commit is contained in:
2021-04-29 18:12:54 +02:00
parent 9977062665
commit 1dbf3b0184
717 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Chill\MainBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class MenuController extends Controller
{
public function writeMenuAction($menu, $layout, $activeRouteKey = null, array $args = array() )
{
return $this->render($layout, array(
'menu_composer' => $this->get('chill.main.menu_composer'),
'menu' => $menu,
'args' => $args,
'activeRouteKey' => $activeRouteKey
));
}
}