PHP code example of modernkernel / yii2-photoswipe

1. Go to this page and download the library: Download modernkernel/yii2-photoswipe 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/ */

    

modernkernel / yii2-photoswipe example snippets


<?=
\powerkernel\photoswipe\Gallery::widget([
    'items' => [
        [
            'image' => 'https://c2.staticflickr.com/2/1518/24267732553_54aed33368_b.jpg',
            'title' => 'Image Title 1',
            'caption' => 'Caption 2',
            'size' => '1024x685',
            'thumb' => 'https://c2.staticflickr.com/2/1518/24267732553_54aed33368_m.jpg',
        ],
        [
            'image' => 'https://farm6.staticflickr.com/5023/5578283926_822e5e5791_b.jpg',
            'title' => 'Image Title 2',
            'caption' => 'Caption 3',
            'size' => '1024x768',
            'thumb' => 'https://farm6.staticflickr.com/5023/5578283926_822e5e5791_m.jpg',
        ],
    ]
])


    echo \powerkernel\photoswipe\Modal::widget([
        'selector'=>'.lightbox',
        'images' => [
                [
                    'src' => 'https://c2.staticflickr.com/2/1518/24267732553_54aed33368_b.jpg',
                    'width' => 1024,
                    'height' => 685,
                    'alt' => 'Title 1',
                ],
                [
                    'src' => 'https://farm6.staticflickr.com/5023/5578283926_822e5e5791_b.jpg',
                    'width' => 1024,
                    'height' => 768,
                    'alt' => 'Title 2',
                ],
            ]
    ]);

php composer.phar