I want to check views/layouts file. For ex:
MainView check: hasMainView
if($this->view->hasMainView('main'))
{
$this->view->setMainView('main');
}
Layout check: hasLayout
if($this->view->hasLayout('private'))
{
$this->view->setLayout('private');
}
I dont want to use manual way with file_exist()
function.
Is there any helper function like hasMainView()
or hasLayout()
?
Thanks