yeesoft / yii2-yee-user
User Module For Yee CMS
Installs: 6 851
Dependents: 2
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 6
Open Issues: 1
Requires
- ikimea/browser: ~1.14
- webvimark/date-range-picker: ~1.0.2
- yeesoft/yii2-yee-auth: ~0.1.0
- yeesoft/yii2-yee-core: ~0.1.0
This package is auto-updated.
Last update: 2022-03-29 00:33:37 UTC
README
##Yee CMS - User Module
####Backend module for managing users, roles, permissions, etc.
This module is part of Yee CMS (based on Yii2 Framework).
Installation
Either run
composer require --prefer-dist yeesoft/yii2-yee-user "~0.1.0"
or add
"yeesoft/yii2-yee-user": "~0.1.0"
to the require section of your composer.json
file.
Run migrations:
yii migrate --migrationPath=@vendor/yeesoft/yii2-yee-user/migrations/
Configuration
- In your backend config file
'modules'=>[ 'user' => [ 'class' => 'yeesoft\user\UserModule', ], ],
Dashboard widget
You can use dashboard widget to display short information about users.
Add this code in your control panel dashboard to display widget:
echo \yeesoft\user\widgets\dashboard\Users::widget();