views:

747

answers:

1

I am using the Zend Framework.

I have a controller named 'UserController' that has a public function displayAction().

I would like to know how I can get that action method to use a different viewer than the default display.phtml.

Any help is appreciated.

+7  A: 

You can use

$this->render('actionName');

or, alternatively, you can call a view script directly by calling

$this->renderScript('path/to/viewscript.phtml');

For more information, you can take a look at http://framework.zend.com/manual/en/zend.controller.actionhelpers.html, specifically the parts about the render() and renderScript() methods.

Aron Rotteveel