arter/amos-ticket

There is no license information available for the latest version (1.3.2) of this package.

Amos Ticket

Installs: 578

Dependents: 0

Suggesters: 0

Security: 0

Type:component

1.3.2 2023-08-22 07:21 UTC

This package is auto-updated.

Last update: 2024-04-02 14:55:00 UTC


README

Ticket management.

Installation

You need to require this package and enable the module in your configuration.

add to composer requirements in composer.json

"open2/amos-ticket": "dev-master",

or run command bash:

composer require "open2/amos-ticket:dev-master"

Enable the News modules in modules-amos.php, add :

 'ticket' => [
	'class' => 'open2\amos\ticket\AmosTicket',
 ],

add news migrations to console modules (console/config/migrations-amos.php):

'@vendor/open2/amos-ticket/src/migrations'

Add ticket to Comments:

  'comments' => [
    'class' => 'arter\amos\comments\AmosComments',
    'modelsEnabled' => [
        .
        .
        'open2\amos\ticket\models\Ticket', //line to add
        .
        .
 	],
    'enableMailsNotification' => false,
    'enableUserSendMailCheckbox' => false
  ],