PHP Classes

File: views/frontend/page/gallery.php

Recommend this page to a friend!
  Classes of Gabriel Alejandro López López   Yii2 Website Module   views/frontend/page/gallery.php   Download  
File: views/frontend/page/gallery.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Yii2 Website Module
Add a content page management system to a site
Author: By
Last change:
Date: 1 month ago
Size: 959 bytes
 

Contents

Class file image Download
<?php

use yii\helpers\Html;
use
daxslab\website\widgets\PageWidgetizer;

?>

<article id="<?= $model->slug ?>" class="<?= $model->type->name ?>">
    <?= $this->render('_header', ['model' => $model]) ?>
<div class="container">

        <?= \yii\bootstrap4\Breadcrumbs::widget([
           
'links' => \daxslab\website\components\Lookup::getBreadcrumbsForPage($model, true),
        ])
?>

        <?= \dosamigos\gallery\Gallery::widget([
           
'items' => array_map(function ($model) {
                return [
                   
'src' => Yii::$app->thumbnailer->get($model->image, 640, 480),
                   
'url' => $model->image,
                   
'options' => ['class' => 'col-md-4 mb-4'],
                   
'imageOptions' => ['class' => 'img-fluid', 'alt' => Html::encode($model->title)],
                ];
            },
$dataProvider->query->all()),
           
'options' => ['class' => 'row'],
        ])
?>

    </div>
</article>