Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public function actions(){
  2. return array(
  3. "getvalues"=>array(
  4. "class"=>"application.components.FilterForm.CFilterValuesAction"
  5. )
  6. ..some other actions...
  7. )
  8. )
  9.  
  10. public function actionGetvalues($class, $name){
  11. $action = new CFilterValuesAction();
  12. $action->runWithParams($_GET);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement