PHP code example of jakeroid / yii2-liqugallery-widget

1. Go to this page and download the library: Download jakeroid/yii2-liqugallery-widget library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jakeroid / yii2-liqugallery-widget example snippets


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