I implemented basically this strategy.
The main difference is (I guess) that I use Doctrine2
.
The constructor class is called (a test echo is printed) but the two functions extract()
and hydrate()
are not.
I added the strategy as follows:
$hydrator = new DoctrineEntity($entityManager);
$hydrator->getHydrator()->addStrategy('my_attribute', new MyHydrationStrategy());
$form->setHydrator($hydrator);
A kind-of similar issue was posted here.
Maybe the problem is in the way how I add this strategy. But I honestly don't know...
Would be great if somebody could give me a hint what I'm doing wrong.