17 lines
344 B
PHP
17 lines
344 B
PHP
<?php
|
|
|
|
namespace KupShop\ContentBundle\Controller;
|
|
|
|
use KupShop\ContentBundle\View\PageView;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
|
|
class PageController extends AbstractController
|
|
{
|
|
public function pageAction(PageView $view, $id): PageView
|
|
{
|
|
$view->setMenuLinkId($id);
|
|
|
|
return $view;
|
|
}
|
|
}
|