Cita:
Iniciado por gabyrsh Hola chicos, recurro a ustedes nuevamente, ya que tengo la siguiente duda, he leido como hacerlo por algun lado pero no recuerdo en dodne, y no lo puedo encontrar.
La idea es la siguiente, tengo en mi controlador la siguiente linea:
Código PHP:
public function indexAction() {
.....
}
Esto por default, carga mi archivo index.phtml de mi view, lo que no recuerdo, es como cargar adiccionalmente otro archivo de mi view por ejemplo listausuarios.phtml en la misma accion.
Alguna idea??
Código PHP:
class MyController extends Zend_Controller_Action
{
public function fooAction()
{
// Renders my/foo.phtml
$this->render();
// Renders my/bar.phtml
$this->render('bar');
// Renders baz.phtml
$this->render('baz', null, true);
// Renders my/login.phtml to the 'form' segment of the response object
$this->render('login', 'form');
// Renders site.phtml to the 'page' segment of the response object; does
// not use the 'my/' subirectory
$this->render('site', 'page', true);
}
public function bazBatAction()
{
// Renders my/baz-bat.phtml
$this->render();
}
}
Recuerdo que también es bueno leer la
documentación oficial para eso esta.
Es un ingles muy básico, ademas con solo leer los ejemplos que bienen se entiende bién.