wdmg/yii2-profiles

System of accounting user profiles

Installs: 198

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

1.1.0 2023-07-06 10:54 UTC

This package is auto-updated.

Last update: 2024-05-06 12:53:12 UTC


README

Yii2 Downloads Packagist Version Progress GitHub license

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:

  1. Apply all module migrations
  2. 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