webDEVILopers
webDEVILopers
ping @jaytaph ?
I will give it a try @Psykoral . Maybe it is a problem when running the command for `Symfony2` inside my `NetBeans`IDE too. I wil test! Thanks
@rgomgar Hope this helps: * https://ourcodeworld.com/articles/read/798/how-to-create-an-excel-file-with-php-in-symfony-4
I recognized that the error only occurs when using my custom User Model Entity Class set in _zfuser.global.php_. By default everything works fine. My custom entity extends the _ZfcUserDoctrineORMEntity_ and...
It looks like a problem with extending the _ZfcUserDoctrineORMEntity_. It works fine when only extending the _ZfcUserEntity_. Maybe the _ZfcUserDoctrineORM_ module somehow injects the _ZfcUserEntity_ making Doctrine resp. the repository...
I just recognized that this required the `zfcuser_user_hydrator` to be set / used. ``` php class Module // forminterface is automatically implemented? { public function onBootstrap(MvcEvent $e) { $em =...
I have added the `zfcuser_user_hydrator` inside the controllers actions.
Here is a possible fix for the **ZfcUserAdmin\Form\CreateUser**: Remove the **Zend\Stdlib\Hydrator\ClassMethods** inside **createAction** of **UserAdminController** in l. 51: ``` #$form->setHydrator(new ClassMethods()); #$form->setHydrator(new DoctrineHydrator()); // moved to Module.php onBootstrap event listener...
Here is a fix for saving **ManyToMany** entities using the **ZfcUserAdmin\Form\EditUser**: **Service/User.php** l. 78 ff. ``` public function edit(Form $form, array $data, UserInterface $user) { // first, process all form...
Correcting myself: The user data IS set, except the displayName - but this possibly is an issue with my config. I will check that tomorrow.