I've been reading some Symfony documentation regarding validation/error-handling for controllers.
http://www.symfony-project.org/book/1_2/06-Inside-the-Controller-Layer
Validation and Error-Handling Methods (just over 2 thirds down)
I like the idea of a function automatically being called - validateMyAction before executeMyAction is called, and you can control which type of view is used, myActionSucess or myActionError for instance.
However, it doesn't seem to work with Symfony 1.4, I'm guessing this type of error handling/validation has been deprecated, so I'm not sure how I should be doing it with Symfony 1.4.
I know the pre and post Execute functions do something similar, but I prefer having a dedicated validation function for each action.
Or should I now be using Filters?
Thanks for any help/advice