Download the PHP package fabiopaiva/zfc-user-crud without Composer
On this page you can find all versions of the php package fabiopaiva/zfc-user-crud. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download fabiopaiva/zfc-user-crud
More information about fabiopaiva/zfc-user-crud
Files in fabiopaiva/zfc-user-crud
Download fabiopaiva/zfc-user-crud
More information about fabiopaiva/zfc-user-crud
Files in fabiopaiva/zfc-user-crud
Vendor fabiopaiva
Package zfc-user-crud
Short Description Crud interface for ZfcUser with Doctrine ORM.
License MIT
Homepage https://github.com/fabiopaiva/ZfcUserCrud
Package zfc-user-crud
Short Description Crud interface for ZfcUser with Doctrine ORM.
License MIT
Homepage https://github.com/fabiopaiva/ZfcUserCrud
Keywords zf2
Please rate this library. Is it a good library?
Informations about the package zfc-user-crud
ZfcUserCrud
ZfcUserCrud provide a CRUD interface to manage Users and Rolers. Require ZfcUserDoctrineOrm.
Instalation
php composer.phar require fabiopaiva/zfc-user-crud:dev-master
Usage
In application.config.php enable this modules:
For user interface
For role interface
For change user password
Override configuration if you wanna use your own entities
return array(
'zfcusercrud' => array(
'userEntity' => 'ZfcUserCrud\Entity\User',
'roleEntity' => 'ZfcUserCrud\Entity\Role'
)
ZfcAdmin
To use with ZfcAdmin, just override the route like this:
<?php
return array(
'router' => array(
'routes' => array(
'zfcadmin' => array(
'child_routes' => array(
'zfc-user-crud' => array(
'type' => 'segment',
'options' => array(
'route' => '/users[/:action][/:id]',
'defaults' => array(
'controller' => 'ZfcUserCrud\Controller\Crud',
'action' => 'index',
),
),
),
),
),
'zfc-user-crud' => array(
'options' => array(
//if you change your ZfcAdmin url(admin), you must use your new url
'route' => '/admin/users[/:action][/:id]'
)
)
),
)
);
All versions of zfc-user-crud with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.3
zf-commons/zfc-user-doctrine-orm Version 1.0.*
bjyoungblood/bjy-authorize Version 1.4.*
zf-commons/zfc-user-doctrine-orm Version 1.0.*
bjyoungblood/bjy-authorize Version 1.4.*
The package fabiopaiva/zfc-user-crud contains the following files
Loading the files please wait ....