ZfcUserAdmin
ZfcUserAdmin copied to clipboard
An admin interface for ZfcUser
Changed the default of the mapper to the ZendDB variant like the text abive siad it was. Didnt use the doctyrine as default because the extra dependecy's that are needed...
I am extending my User entity with an attribute using a ManyToMany association. In my example I use "costCenters" but you can think of it as the already existing "roles"...
These changes are just a proposal for solution for the following issues: - https://github.com/Danielss89/ZfcUserAdmin/issues/30 - https://github.com/Danielss89/ZfcUserAdmin/issues/31 I have not edited further code since I can't tell yet what consequences this...
I try to add custom form elements using the module options. My **User entity**: ``` class User implements UserInterface, ProviderInterface { /** * @var int * @ORM\Id * @ORM\Column(name="user_id", type="integer")...
Installed modules: ``` PHP array(2) { ["modules"] => array(12) { [0] => string(18) "ZendDeveloperTools" [1] => string(14) "DoctrineModule" [2] => string(17) "DoctrineORMModule" [3] => string(7) "ZfcBase" [4] => string(7) "ZfcUser"...
The create User Form is not showing the captcha - but needs the input. Perhaps add ``` $this->remove('captcha'); ``` after https://github.com/Danielss89/ZfcUserAdmin/blob/master/src/ZfcUserAdmin/Form/CreateUser.php#L27 Like already done in EditUser https://github.com/Danielss89/ZfcUserAdmin/blob/master/src/ZfcUserAdmin/Form/EditUser.php#L27