dev-master
9999999-dev https://github.com/Danielss89/ZfcUserAdmin.gitAn administration interface for ZfcUser.
The Requires
zf2
Wallogit.com
2017 © Pedro PelĂĄez
An administration interface for ZfcUser.
Version 0.1, (*1)
This module provides an interface to create/edit/delete users., (*2)
danielss89/zfc-user-admin (version dev-master) to requirementsupdate command on composer./vendor/ directory and enable it in your
application.config.php file.https://github.com/juriansluiman/ZfcAdmin into your ./vendor/ directory and enable it in your
application.config.php file.Copy <zfc-user-admin>/config/ZfcUserAdmin.global.php.dist to <project root>/autoload/ZfcUserAdmin.global.php and
edit required module options (full list will be added to doc later, for now you can find all available options in
<zfc-user-admin>/src/Options/ModuleOptions.php - just look at class properties and convert upper case to
dash plus lower case, e.g. createUserAutoPassword -> create_user_auto_password). E.g.:, (*3)
<?php
/**
* ZfcUserAdmin Configuration
*/
$settings = array(
'user_mapper' => 'ZfcUserAdmin\Mapper\UserZendDb',
'user_list_elements' => array('Id' => 'id', 'Name' => 'display_name', 'Email address' => 'email'),
'create_user_auto_password' => false,
...
);
/**
* You do not need to edit below this line
*/
return array(
'zfcuseradmin' => $settings
);
TODO: add more usage information and module options list, (*4)
An administration interface for ZfcUser.
zf2