darkmatus/roleuserbridge

There is no license information available for the latest version (dev-master) of this package.

ZfcUser/BjyAuthorize Bridge for auto-adding User to the user_role_table from BjyAuthorize. including fix bc break

dev-master 2016-07-15 10:46 UTC

This package is auto-updated.

Last update: 2024-04-08 14:08:32 UTC


README

ZfcUser/BjyAuthorize Bridge for auto-adding User to the user_role_table from BjyAuthorize

Requires: ZF2 latest master, ZfcUser, BjyAuthorize

Installation:

  • Install ZfcUser and BjyAuthorize as shown on thier pagesdingus
  • Copy the ZfcUser/BjyAuthorize Bridge into your module or vendor directory
  • Copy 'roleuserbridge/config/roleuserbridge.config.php' to your 'config/autoload/'
  • add a entry to your application.config.php with 'RoleUserBridge'

Comments:

The bridge works by automatically adding an entry to the user_role_linker table so
that new users are automatically registered with a 'user' role.

At this moment there is no administration backend to change the role of a User after
registration (only with DB-Tools).
If you need an admin you must edit your user_role_linker table manually.

If you have created your own linker-table, you must edit the linker.config.php with your own table name.
In linker.config.php you must also configure the id of the user record as you have set it up in
your 'user_role' table. For example, if your role table looks like this:

mysql> SELECT * FROM `user_role`;
+----+---------+------------+-----------+
| id | role\_id | is\_default | parent\_id |
+----+---------+------------+-----------+
|  1 | guest   |          1 |      NULL |
|  2 | user    |          0 |      NULL |
|  3 | admin   |          0 |         2 |
+----+---------+------------+-----------+
3 rows in set (0.00 sec)

you should modify the roleuserbridge.config.php so that
'user_role_id' => 2

!!!ATTENTION!!!

For compatibility with packagist the repo was renamed to lowercase characters