himiklab / yii2-colorbox-widget
This package is abandoned and no longer maintained.
No replacement package was suggested.
Customizable lightbox widget for Yii2
Package info
github.com/himiklab/yii2-colorbox-widget
Type:yii2-extension
pkg:composer/himiklab/yii2-colorbox-widget
1.0.3
2016-02-02 10:23 UTC
Requires
- bower-asset/jquery-colorbox: *
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2022-01-12 15:39:05 UTC
README
A customizable lightbox jQuery plugin for Yii2 based on Colorbox.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require "himiklab/yii2-colorbox-widget" "*"
or add
"himiklab/yii2-colorbox-widget" : "*"
to the require section of your application's composer.json file.
Usage
- In view:
use himiklab\colorbox\Colorbox; <?= Colorbox::widget([ 'targets' => [ '.colorbox' => [ 'maxWidth' => 800, 'maxHeight' => 600, ], ], 'coreStyle' => 2 ]) ?>