Trying to following this: http://www.yiiframework.com/wiki/22/how-to-display-static-pages-in-yii/
In order to this to be perfectly clear to me.
Steps:
1)
On this theater controller we create a method called actions:
public function actions() {
return array(
'region'=>array('class'=>'CViewAction')
);
}
2)
on app/view/theater/ we will create a new folder called "region" where our static pages should reside;
3)
We should then edit the menu like this ?
$this->widget('zii.widgets.CMenu',
array('items'=>array(
array(
'label'=>'Specifc Theater A',
'url'=>array('theater/region/nomeofmyfilewithoutextension')
),
array(
'label'=>'Specific Theater B',
'url'=>array('theater/region/nomeofmyfilewithoutextension')
),
...
4)
In order to avoid a login page to appear: On our theater controller we should allow on our accessRules some access to "region";
I'm getting:
The requested view "index" was not found.
Any help please?
Should we configure routes on config.php ?
app/view/theater/region/myfile.phpand, on the menu I have:'url'=>array('theater/region/myfile')– MEM Jun 25 '12 at 10:26myfileshould be a parameter. It should beurl=>array('/theather/region', 'view'=>'myfile')– Örs Jun 25 '12 at 10:37