arter / amos-slideshow
There is no license information available for the latest version (1.5.0) of this package.
Sistema AMOS per lo slideshow
1.5.0
2024-03-19 14:52 UTC
Requires
- php: >=5.4.0
- arter/amos-admin: >=1.8
- arter/amos-core: ^1.9.50
- arter/amos-dashboard: ^1.8.15
- yiidoc/yii2-redactor: *
This package is auto-updated.
Last update: 2025-03-07 11:57:00 UTC
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 "arter/amos-slideshow:^1.4"
[PLATFORM]/backend/config/main.php
return [
...
'modules' => array_merge(require(__DIR__ . '/modules.php'), [
...
'slideshow' => [
'class' => 'arter\amos\slideshow\AmosSlideshow'
]
...
[PLATFORM]/console/config/main.php
return [
...
'controllerMap' => [
'migrate' => [
...
'migrationLookup' => array_merge(require(__DIR__ . '/migrations.php'), [
...
'@vendor/arter/amos-slideshow/src/migrations',
...
])
]
...
],
]
[PLATFORM]/backend/config/params-local.php
return [
...
'slideshow' => true
]