zendモジュラーベースのフレームワークで単一のアクションを介して複数のビューを作成する方法を教えてください。
例えば
$UserId = $this->getRequest()->getParam('id');
if($UserId !='')
{
$userDetails =$loginObj->getUserTypeByID($UserId);
if($userDetails == 0)
$this->_helper->redirector('index', 'profile', 'default');
else
$usrType = $userDetails['user_type'];
if($usrType =='C' || $usrType =='H' )
{
//$this->renderScript('other-user-profile.phtml' );
//$this->render("other-user-profile.phtml");
$this->_helper->viewRenderer('profile/other-user-profile.phtml');
//$this->_forward('other-user-profile.phtml','profile','default');
}
else
{
$this->render("index.phtml");
}
}
これは機能していません。どうすれば解決できますか?