I would like to install the CakePHP framework to enable rendering of the page when the view file does not exist. I have all the definition set in the layout and you don't need any extra empty files.
You can use a controller property autoRender .
autoRender
function beforeRender() { $this->autoRender = FALSE; }
Yeah ... $this->render(false);
$this->render(false);