Renderização de páginas
// renderizar uma página diferente para a action
$this->renderScript('admin/motorista/add.phtml');
// ou
$this->render('add');
// renderizar sem ter a página phtml
// util para retornar json
$this->_helper->viewRenderer->setNoRender(true);
// renderizar sem layout
$this->_helper->_layout->disableLayout();
return $this->_forward("veiculo-index", "motorista", "admin", array("idMotorista", $idMotorista));