dev-master
9999999-devEmails management module for Cookyii CMF
BSD-3-Clause
The Requires
by Revin Roman
email yii2 module queue cmf cookyii letters
Emails management module for Cookyii CMF
composer require cookyii/module-postman:dev-master
In backend
app
config
in section modules
add cookyii\modules\Postman\backend\Module
and in section bootstrap
add page
:, (*1)
// ./backend-app/config/app.php return [ // ... 'bootstrap' => [ // some components ... 'postman' ], 'modules' => [ // some modules ... 'postman' => 'cookyii\modules\Postman\backend\Module', ], // ... ];
Also, you need to configure the following modules (they are already downloaded):, (*2)
// ./backend-app/config/app.php return [ // ... 'bootstrap' => [ // some components ... 'postman', 'media', ], 'modules' => [ // some modules ... 'postman' => 'cookyii\modules\Postman\backend\Module', 'media' => 'cookyii\modules\Media\backend\Module', ], // ... ];
In rbac/update
command add merge class cookyii\modules\Page\backend\Permissions
:, (*3)
// ./common/commands/RbacCommand.php class RbacCommand extends \rmrevin\yii\rbac\Command { public $backendMerge = [ // ... 'cookyii\modules\Postman\backend\Permissions', ]; }
./backend rbac/update
./frontend migrate
Emails management module for Cookyii CMF
BSD-3-Clause
email yii2 module queue cmf cookyii letters