dev-master
9999999-devClient management module for Cookyii CMF
BSD-3-Clause
The Requires
- cookyii/base dev-master
- rmrevin/yii2-fontawesome ~2.10
- cookyii/module-account dev-master
- php >=5.5.0
by Revin Roman
yii2 module client cmf cookyii
Wallogit.com
2017 © Pedro Peláez
Client management module for Cookyii CMF
composer require cookyii/module-client:dev-master
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',
],
// ...
];
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',
];
// ...
}
./backend rbac/update
./frontend migrate
Client management module for Cookyii CMF
BSD-3-Clause
yii2 module client cmf cookyii