Cita:
Iniciado por sciutomaxi Crear un view helper no quiero porque si yo ya tengo un action que realiza el listado y todo el procesamiento
Sobre gustos..., entonces como te comente antes utiliza el action view helper(con el overhead correspondiente)
Código PHP:
Ver original...
public function fichaAction()
{
$this->view->titulo = 'xxx';
$this->view->nombre = 'xxx';
$this->view->listado = $this->view->action('listado', 'empresa', null, array('id' => 5));// null o el modulo }
public function listadoAction()
{
$usurios = $Usuarios->listadodeUsuariostipo($this->_getParam('id'));
$this->view->lista = array('1','2'); }
...