<?php
namespace Kobizo\Bundle\CmsBundle\Controller\ViewHelper;
use Kobizo\Component\Attributes\Key\MetaKey;
use Kobizo\Component\Entity\Page;
class PageViewHelper extends BaseViewHelper
{
public function getView(Page $page, string $view): string
{
$template = $page->getMeta(MetaKey::TEMPLATE);
return $this->getViewByTemplate($view, $template);
}
}