render(); } /** * Test Function for testAction * * @return void */ public function testAction() { $this->render('index'); } /** * Test Function for siteAction * * @return void */ public function siteAction() { $this->render('site', null, true); } /** * Test Function for nameAction * * @return void */ public function nameAction() { $this->render(null, 'name'); } /** * Test Function for scriptAction * * @return void */ public function scriptAction() { $this->renderScript('custom/renderScript.php'); } /** * Test Function for scriptNameAction * * @return void */ public function scriptNameAction() { $this->renderScript('custom/renderScript.php', 'foo'); } }