Download the PHP package zpearl/yii2-users-module without Composer
On this page you can find all versions of the php package zpearl/yii2-users-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii2-users-module
Yii2 users module.
This module provide a users managing system for your yii2 application.
Installation
The preferred way to install this extension is through composer.
Either run
or add
to the require section of your composer.json
file.
Configuration
Add yii2-users-module
to module
section of each application config:
Add or edit user
component section:
Add or edit authManager
component section:
Run module migration:
Usage
Once the extension is installed, simply use it in your code by:
By default will be created one superadmin
user with login admin
and password admin12345
.
After installation you'll be able to access below links (relative to your site domain):
Frontend:
/users/
- All users page/users/admin/
- Admin page/login/
- Log In page/logout/
- Log Out page/signup/
- Sign Up page/recovery/
- Password recovery page/resend/
- Resend email activation token/activation/
- Accaunt activation page/recovery-confirmation/
- Password reset page/my/settings/email/
- Email change page/my/settings/password/
- Password change page/my/settings/update/
- Profile update page
Backend
You'll need to specify universal route '<_m>/<_c>/<_a>' => '<_m>/<_c>/<_a>'
in your config file to access module actions.
/users/admin/login/
- Log In page/users/admin/logout/
- Log Out page/users/crud/index/
- All users page/users/crud/view/
- User page/users/crud/create/
- Create new user page/users/crud/update/
- Update user page/users/crud/delete/
- Delete one user/users/crud/batch-delete/
- Delete more users
Dependences
All versions of yii2-users-module with dependencies
yiisoft/yii2-swiftmailer Version *
yiisoft/yii2-bootstrap Version *
vova07/yii2-rbac-module Version *
vova07/yii2-control-widget Version *