Modify action names for route collections in Symfony?
- by James Skidmore
When creating an sfPropelRouteCollection, how can I edit the action names that the collection will generate?
For example:
# Routing for "product" CRUD
product:
class: sfPropelRouteCollection
options:
model: Product
module: product
actions: [new, create, edit, update, delete]
How can I…