Do I need them or can I drop them? None of my routes (that I know of) point to that function
Ideally all my actions are well named and fit a specific purpose so I would prefer to drop it outright. Problems?
EDIT | In addition to the above assume I have a controller:action like...
Code: Select all
MyCustomObject::updateProfileAction()Given a XML route like:
Code: Select all
<example> <route>/:title/:page</route> <defaults> <controller>custom-object</controller> <action>update-profile-action</action> </defaults> </example> Cheers,
Alex