kotchuprik / yii-fotorama-widget
Fotorama widget for Yii
Package info
github.com/kotchuprik/yii-fotorama-widget
Type:yii-extension
pkg:composer/kotchuprik/yii-fotorama-widget
dev-master
2014-04-21 14:40 UTC
Requires
- php: >=5.3
This package is not auto-updated.
Last update: 2026-02-28 21:28:21 UTC
README
The YiiFotoramaWidget is the wrapper for the Fotorama.
Usage
To call the widget you should use:
<?php $this->beginWidget('ext.yii-fotorama-widget.YiiFotoramaWidget', array( // you must specify the version (available versions http://cdnjs.com/libraries/fotorama) 'version' => '4.5.1', )); ?> <img src="/img/1.jpg"/> <img src="/img/2.jpg"/> <img src="/img/3.jpg"/> <?php $this->endWidget(); ?>
To call the widget with the Fotorama options you should use:
<?php $this->beginWidget('ext.yii-fotorama-widget.YiiFotoramaWidget', array( 'version' => '4.5.1', 'options' => array( 'nav' => 'thumbs', ), 'htmlOptions' => array( 'class' => 'anotherCssClass', ), )); ?> <img src="/img/1.jpg"/> <img src="/img/2.jpg"/> <img src="/img/3.jpg"/> <?php $this->endWidget(); ?>