views:

84

answers:

1

Hi Guys,

How do you specify a custom view script for a given Controller Action method?

For example:

Class UserGalleryController extends Zend_Controller_Action 
{

 public function fooAction()
 {
  $this->view->actionMsg = 'foo';
  // (uses foo.phtml automagically)
 }

 public function  barAction()
 {
  $this->view->actionMsg = 'bar';
  //use foo's view script ?????
 }
}

I basically want to have one view script (foo.phtml)

Thanks :-)

A: 
public function barAction()
{
    $this->view->actionMsg = 'bar';
    $this->render('foo');
}
Typeoneerror