/var/www/vhosts/ihelp.ro/httpdocs/src/Controller
Edit: /var/www/vhosts/ihelp.ro/httpdocs/src/Controller/ShowcaseController.php (669B)
beforeFilter
# --------------------------------
public function beforeFilter(\Cake\Event\EventInterface $event)
{
parent::beforeFilter($event);
$this->Authentication->addUnauthenticatedActions([
'view'
]);
$this->viewBuilder()->setLayout('showcase');
}
# --------------------------------
# Showcase > view
# --------------------------------
public function view($slug)
{
return $this->render($slug);
}
}