Parsing Urlmanager Link Back To Array

Hi,

How I can access to array of params, passed to controller Action in View?

Basicaly before SEO links was applied there was rules in my View:




foreach(....){

$_GET['filter']=$value;

$link=$this->createUrl('models/showModels',$_GET);

echo CHtml::link(Yii::t('main',$value),$link);

}



But after applying urlManager $_GET variable become to empty.

I just discover that with some “magic” method it’s done in CLinkPager module, but can’t understand how.