Download the PHP package netcore/module-user without Composer
On this page you can find all versions of the php package netcore/module-user. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package module-user
Easier user management.
Main idea of this package is to make user management more simple in CMS side. And also to provide simple socialite integration with additional traits and helpers.
Pre-installation
This package is part of Netcore CMS ecosystem and is only functional in a project that has following packages installed:
https://github.com/netcore/netcore
https://github.com/netcore/module-admin
https://github.com/netcore/module-setting
https://github.com/nWidart/laravel-modules
Instalation
Publish config, assets, migrations. Migrate and seed:
You need to add UserPermissions
trait to your user model in order to be able to log in acp.
You should be good to go.
Features
-
You get user management section in your acp where you can create, delete, edit, show users. Also you can configure what actions are allowed to be done in User section. For example you disable deleting users in acp. In order to do so you need to navigate to
config/netcore/module-user.php
config file and change from true to false corresponding variables: - Also if you want to use socialite you can configure providers in
config/netcore/module-user.php
, also turno on and off socialite support. If you use socialite you need to addUserSocialite
trait to you User model andControllerSocialite
to your AuthController.
It will seed settings for oAuth and you will be able to configure them in Settings section in your page.
Dont forget to add Socialite package to your composer.json file
In order to call socialite request you can use this url /login/{provider}
where {provider} is replaced with facebook or google, depends on what you have choosen.
You need to add providerCallback
method to your AuthController, in this method you will be able to manage data which you receive from provider.
Exporting users
- First of all you need to configure export filters, add export data formatter to related model (if option with relation is required)
- At module-user.php config file
And then you need to implement following method in your related model
Datatable configuration
- By default columns scanned by CRUD module will be shown.
-
You can configure necessary columns, modify titles and modify values as well.
- Create presenter somewhere, for example in app/Presenters/AdminUsersDatatablePresenter.php
- Example file:
All versions of module-user with dependencies
yajra/laravel-datatables-oracle Version ~8.0
maatwebsite/excel Version ~2.1.0
netcore/module-setting Version ^2.0