私はこのようなURLルールを持っています:
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'' => 'site/index',
'<controller:pages>/<slug>' => '<controller>/inPage',
),
'showScriptName'=>false,
),
アクションで私は議論のようなナメクジを得ることができます
public function actionInPage($slug)
{
echo$slug;
}
しかし、メインコントローラー( protected / components / controller.php)またはコントローラービューからそのパラメーターを取得するにはどうすればよいですか?