Re: [doctrine-user] Shopware Doctrine PreUpdateEventArgs

2016-07-25 Thread Jonas Siglmüller
Is it possible to use Doctrine EventManager in Shopware? Von meinem iPhone gesendet > Am 25.07.2016 um 20:34 schrieb Benjamin Eberlei : > > I think you are using shopware event subscription, not Doctrine EventManager. > These are different systems. probably shopware's

Re: [doctrine-user] Shopware Doctrine PreUpdateEventArgs

2016-07-25 Thread Benjamin Eberlei
I think you are using shopware event subscription, not Doctrine EventManager. These are different systems. probably shopware's onUpdateAccountAfter event works entirely different. On Sat, Jul 23, 2016 at 5:45 PM, Jonas Siglmüller wrote: > Thank you for this fast reply.

Re: [doctrine-user] Shopware Doctrine PreUpdateEventArgs

2016-07-23 Thread Jonas Siglmüller
Thank you for this fast reply. code snippet: public function install() { $this->subscribeEvent( 'Shopware\Models\Customer\Address::preUpdate', 'onUpdateAccountAfter' ); return true; } public function

Re: [doctrine-user] Shopware Doctrine PreUpdateEventArgs

2016-07-23 Thread Benjamin Eberlei
Please provide the full error message and exception trace, and a snippet of your code. On Sat, Jul 23, 2016 at 12:52 PM, Jonas Siglmüller wrote: > Hello, > > I would like to acces the PreUpdateEventArgs in my Shopware plugin after > subscribing to the event