2017 © Pedro Peláez
 

yii2-extension module-client

Client management module for Cookyii CMF

image

cookyii/module-client

Client management module for Cookyii CMF

  • Friday, February 3, 2017
  • by rmrevin
  • Repository
  • 1 Watchers
  • 1 Stars
  • 263 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

Clients management module

Installation

composer require cookyii/module-client:dev-master

Configuration

1. Update config

In backend app config in section modules add cookyii\modules\Client\backend\Module and in section bootstrap add client:, (*1)

// ./backend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'client'
    ],
    'modules' => [
        // some modules ...
        'client' => 'cookyii\modules\Client\backend\Module',
    ],
    // ...
];

2. Add new permissions

In rbac/update command add "merge" class cookyii\modules\Client\backend\Permissions:, (*2)

// ./common/commands/RbacCommand.php

class RbacCommand extends \rmrevin\yii\rbac\Command
{

    public $backendMerge = [
        // ...
        'cookyii\modules\Client\backend\Permissions',
    ];

    // ...
}

4. Update permissions

./backend rbac/update

5. Execute new migrations

./frontend migrate

The Versions

03/02 2017

dev-master

9999999-dev

Client management module for Cookyii CMF

  Sources   Download

BSD-3-Clause

The Requires

 

yii2 module client cmf cookyii