Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.2 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.2 KB

Yii2 LiquGallery widget

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.

If you need some assistance or similar software, I could help. Contact me on LinkedIn or Upwork.

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,
            ]
        ]),
    ],