2017 © Pedro Peláez
 

yii2-extension module-postman

Emails management module for Cookyii CMF

image

cookyii/module-postman

Emails management module for Cookyii CMF

  • Friday, August 4, 2017
  • by rmrevin
  • Repository
  • 1 Watchers
  • 1 Stars
  • 461 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

Emails management module

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:, (*1)

// ./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):, (*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',
    ],
    // ...
];

3. Add new permissions

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

4. Update permissions

./backend rbac/update

5. Execute new migrations

./frontend migrate

The Versions

04/08 2017

dev-master

9999999-dev

Emails management module for Cookyii CMF

  Sources   Download

BSD-3-Clause

The Requires

 

email yii2 module queue cmf cookyii letters