Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 27  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. masked own parameter in Symfony routing
  2. linksone:
  3.   url: /linksone
  4.   param: { module: phone, action: show, id: 1 }
  5.        
  6. linksone:
  7.   url: /linksone
  8.   param: { module: phone, action: show, number: 3 }
  9.        
  10. linksone:
  11.   url: /phone/show/:number
  12.   param: { module: phone, action: show }
  13.        
  14. linksone:
  15.   url: /phone/show/:number
  16.   param: { module: phone, action: show, number: 1 }