Advertisement
Guest User

Untitled

a guest
Apr 29th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. public static $url_handlers = array(
  2. '' => 'index',
  3. '$CarURL/$ModelURL/$CategoryURL/$PartURL!' => 'getPartsPage',
  4. '$CarURL/$ModelURL/$CategoryURL!' => 'getCategoryPage',
  5. '$CarURL/$ModelURL!' => 'getCarsPage',
  6. '$CarURL!' => 'getCarsPage'
  7. );
  8.  
  9.  
  10. public function getCategoryPage($request)
  11. {
  12.  
  13. ..////
  14.  
  15. return $this->customise($CarModel)->renderWith(array('Category_Page', 'Page'));
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement