elitedivision/amos-slideshow


README

Plugin per rappresentare mediante modali delle informazioni sulla base della rotta e del ruolo dell'utente

Installation

The only things you need is to require thhis package and enable the module in your config

bash

composer require "elitedivision/amos-slideshow:^1.4"

[PLATFORM]/backend/config/main.php

return [
  ...
  'modules' => array_merge(require(__DIR__ . '/modules.php'), [
    ...
    'slideshow' => [
      'class' => 'elitedivision\amos\slideshow\AmosSlideshow'
    ]
    ...

[PLATFORM]/console/config/main.php

return [
    ...
    'controllerMap' => [
        'migrate' => [
            ...
            'migrationLookup' => array_merge(require(__DIR__ . '/migrations.php'), [                       
                ...
                '@vendor/elitedivision/amos-slideshow/src/migrations',
                ...
            ])
        ]
        ...
    ],
]

[PLATFORM]/backend/config/params-local.php

return [
    ...
    'slideshow' => true
]