wdmg / yii2-profiles
System of accounting user profiles
Installs: 209
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- wdmg/yii2-base: ^1.3.1
- wdmg/yii2-helpers: ^1.4.5
- wdmg/yii2-selectinput: ^1.0.9
- wdmg/yii2-users: ^1.2.3
- wdmg/yii2-validators: ^1.0.7
- yiisoft/yii2: ^2.0.40
This package is auto-updated.
Last update: 2024-11-06 13:58:12 UTC
README
Yii2 User profiles
System of managing user profiles
Requirements
- PHP 5.6 or higher
- Yii2 v.2.0.40 and newest
- Yii2 Base module (required)
- Yii2 Users module (required)
Installation
To install the module, run the following command in the console:
$ composer require "wdmg/yii2-profiles"
After configure db connection, run the following command in the console:
$ php yii profiles/init
And select the operation you want to perform:
- Apply all module migrations
- Revert all module migrations
Migrations
In any case, you can execute the migration and create the initial data, run the following command in the console:
$ php yii migrate --migrationPath=@vendor/wdmg/yii2-profiles/migrations
Configure
To add a module to the project, add the following data in your configuration file:
'modules' => [
...
'profiles' => [
'class' => 'wdmg\profiles\Module',
'routePrefix' => 'admin',
'supportLocales' => [
'ru-RU',
'uk-UA',
'en-US'
],
'reservedFields' => [
'admin',
'administrator',
'root',
'superuser',
'supervisor',
'timezone'
]
],
...
],
Routing
Use the Module::dashboardNavItems()
method of the module to generate a navigation items list for NavBar, like this:
<?php
echo Nav::widget([
'options' => ['class' => 'navbar-nav navbar-right'],
'label' => 'Modules',
'items' => [
Yii::$app->getModule('profiles')->dashboardNavItems(),
...
]
]);
?>
Status and version [in progress development]
- v.1.1.0 - Update copyrights, fix menu dashboard
- v.1.0.0 - Added CRUD for profiles and custom fields
- v.0.0.1 - Module, models, component, translations and migrations