dev-master
9999999-devTranslation management module for Cookyii CMF
BSD-3-Clause
The Requires
by Revin Roman
yii2 module page static cmf cookyii
Translation management module for Cookyii CMF
composer require cookyii/module-translation:dev-master
In backend
app
config
in section modules
add cookyii\modules\Translation\backend\Module
and in section bootstrap
add page
:, (*1)
// ./backend-app/config/app.php return [ // ... 'bootstrap' => [ // some components ... 'translation' ], 'modules' => [ // some modules ... 'translation' => 'cookyii\modules\Translation\backend\Module', ], // ... ];
In rbac/update
command add merge class cookyii\modules\Translation\backend\Permissions
:, (*2)
// ./common/commands/RbacCommand.php class RbacCommand extends \rmrevin\yii\rbac\Command { public $backendMerge = [ // ... 'cookyii\modules\Translation\backend\Permissions', ]; }
./backend rbac/update
Translation management module for Cookyii CMF
BSD-3-Clause
yii2 module page static cmf cookyii