PHP code example of infoweb-internet-solutions / yii2-cms-sliders
1. Go to this page and download the library: Download infoweb-internet-solutions/yii2-cms-sliders library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
infoweb-internet-solutions / yii2-cms-sliders example snippets
return [
...
'modules' => [
...
'yii2images' => [
'class' => 'rico\yii2images\Module',
// @frontend/web/
'imagesStorePath' => '@uploadsBaseUrl/img/store', //path to origin images
'imagesCachePath' => '@uploadsBaseUrl/img/cache', //path to resized copies
'graphicsLibrary' => 'GD', //but really its better to use 'Imagick'
'placeHolderPath' => '@infoweb/sliders/assets/img/placeHolder.png',
],
],
];
'modules' => [
...
'sliders' => [
'class' => 'infoweb\sliders\Module',
],
...
'cms' => [
...
'sideBarItems' => [
'modules' => [
...
[
'label' => 'Sliders',
'i18nGroup' => 'infoweb/sliders',
'url' => '/sliders/slider/index',
'authItem' => 'showSlidersModule',
'activeUrl' => 'sliders',
],
],
],
],
...
],