kowap / yii2-lightgallery
lightgallery
Package info
github.com/kowap/yii2-lightgallery
Type:yii2-extension
pkg:composer/kowap/yii2-lightgallery
1.5.0
2017-07-04 06:40 UTC
Requires
- bower-asset/lightgallery: *
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-03-21 07:44:02 UTC
README
More information about gallery here.
Installation
The preferred way to install this extension is through composer.
Either run
composer require kowap/yii2-lightgallery
or add
"kowap/yii2-lightgallery": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?php echo \kowap\lightgallery\LightGalleryWidget::widget([ 'items' => [ [ 'thumb' => '../thumb/image_1.jpg', 'src' => '../big/image_1.jpg' ], [ 'thumb' => '../thumb/image_2.jpg', 'src' => '../big/image_2.jpg' ] ], // more options http://sachinchoolur.github.io/lightGallery/docs/api.html 'options' => [ 'mode' => 'lg-zoom-in-big', 'download' => false, 'zoom' => false, 'share' => false ] ]); ?>