cookyii/module-postman

Emails management module for Cookyii CMF

Maintainers

👁 rmrevin

Package info

github.com/cookyii/module-postman

Type:yii2-extension

pkg:composer/cookyii/module-postman

Statistics

Installs: 498

Dependents: 2

Suggesters: 0

Stars: 1

Open Issues: 0

dev-master 2018-10-21 19:25 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause ad531e054bab25377a80ba765fdf5c3865aabf29

queueemailmodulecmfyii2cookyiiletters

This package is not auto-updated.

Last update: 2026-06-21 02:46:38 UTC


README

Installation

composer require cookyii/module-postman:dev-master

Configuration

1. Update config

In backend app config in section modules add cookyii\modules\Postman\backend\Module and in section bootstrap add page:

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

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

2. Dependencies

Also, you need to configure the following modules (they are already downloaded):

// ./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',
 ],
 // ...
];

3. Add new permissions

In rbac/update command add merge class cookyii\modules\Page\backend\Permissions:

// ./common/commands/RbacCommand.php

class RbacCommand extends \rmrevin\yii\rbac\Command
{
 
 public $backendMerge = [
 // ...
 'cookyii\modules\Postman\backend\Permissions',
 ];
}

4. Update permissions

./backend rbac/update

5. Execute new migrations

./frontend migrate