Is there a quick way to add a Doctrine event listener to all tables in a Symfony 1.4 project?
I've tried adding this to the Doctrine_Manager in ProjectConfiguration::configureDoctrine()
but this doesn't seem to get called. DQL callbacks are enabled, and regular behaviours seem to work - I just can't seem to attached my listener properly.
I'm extending the Doctrine_Record_Listened like so:
<?php class siteFilterListener extends Doctrine_Record_Listener { ... }