I'm trying to create one record listener for all models.
In ProjectConfiguration.class.php I added:
public function configureDoctrineConnection(Doctrine_Connection $connection)
{
$connection->addRecordListener(new doctrineLogger());
}
And I created lib/doctrineLogger.class.php
class doctrineLogger implements Doctrine_Overloadable
{
public function __call($m, $a)
{
echo 'caught event '. $m .'<br />';
}
}
But no event is ever caught.
When I tried general connection listener with this:
$connection->addListener(new doctrineLogger());
... and the same doctrineLogger class, I got expected output properly:
caught event preConnect
caught event preExec
caught event postExec
caught event postConnect
caught event prePrepare
caught event postPrepare
...
What am I doing wrong? Am I implementing it incorrectly? Please help, I'm clueless. I'm trying to use Doctrine listeners for a first time.