jakeroid / yii2-liqugallery-widget
Simple gallery widget with AJAX upload and main image option
Installs: 43
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-widget
Requires
- php: >=5.4.0
- yiisoft/yii2: ^2.0.0
README
The project is abandoned! You can use it at your own risk.
Simple gallery widget with AJAX upload and main image option. Could be useful if you want to manage images on the back office side.
How to install?
Just run the following command.
composer require jakeroid/yii2-liqugallery-widget
How to use?
It is JavaScript wrapped in yii2 widget. All you need is to create a handler in the controller and specify the path to it. Here is some example.
[
'label' => 'Editor gallery',
'content' => jakeroid\liqugallerywidget\LiquGalleryWidget::widget([
'handler_url' => Url::to(['liqugallery-back-office/handle']),
'custom_params' => [
LiquGalleryParams::GALLERY_GROUP_ID => ($model->source->gallery) ? $model->source->gallery->id : false,
LiquGalleryParams::IMAGE_TYPE => \app\models\DbImage::TYPE_EDITOR_IMAGE,
]
]),
],