ofilin / yii2-lightgallery
lightgallery
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/lightgallery: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-03-29 00:43:19 UTC
README
Fork from https://github.com/kowap/yii2-lightgallery fix paths to lib
jQuery lightgallery for Yii2
More information about gallery here.
Installation
The preferred way to install this extension is through composer.
Either run
composer require ofilin/yii2-lightgallery
or add
"ofilin/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 \ofilin\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 ] ]); ?>