PHP Classes

File: aksara/Modules/Galleries/Views/category.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   aksara/Modules/Galleries/Views/category.php   Download  
File: aksara/Modules/Galleries/Views/category.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Refine core modules
Date: 4 days ago
Size: 2,536 bytes
 

Contents

Class file image Download
<?php
    $output
= null;

    if (
$results) {
        foreach (
$results as $key => $val) {
           
$images = json_decode($val->gallery_images, true);
           
$labels = explode(',', $val->gallery_tags);

            if (
is_array($images) && sizeof($images) > 0) {
                foreach (
$images as $src => $alt) {
                    if (!
$src) {
                        continue;
                    }

                   
$output .= '
                        <div class="col-sm-6 col-md-3">
                            <a href="'
. current_page($src) . '" class="--xhr">
                                <img src="'
. get_image('galleries', $src, 'thumb') . '" class="rounded-4 shadow-sm w-100 mb-4" alt="' . $alt . '" />
                            </a>
                        </div>
                    '
;
                }
            }
        }
    }
?>

<?php if ($output): ?>
<div class="py-3 py-md-5 bg-light">
        <div class="container">
            <h1 class="text-center text-md-start">
                <?= $meta->title; ?>
</h1>
            <p class="lead text-center text-md-start">
                <?= truncate($meta->description, 256); ?>
</p>
        </div>
    </div>
    <div class="py-3 py-md-5">
        <div class="container">
            <div class="row">
                <?= $output; ?>
</div>
        </div>
    </div>
<?php else: ?>
<div class="py-3 py-md-5">
        <div class="container">
            <div class="row">
                <div class="col-lg-8 offset-lg-2">
                    <div class="py-5">
                        <div class="text-center">
                            <img src="<?= base_url('assets/yao-ming.png'); ?>" width="128" alt="404" />
                        </div>
                        <h2 class="text-center">
                            <?= phrase('No album is found!'); ?>
</h2>
                        <p class="lead text-center">
                            <?= phrase('No album is available at the moment.'); ?>
</p>
                        <p class="text-center">
                            <a href="<?= current_page('../'); ?>" class="btn btn-outline-dark rounded-pill px-5 --xhr">
                                <i class="mdi mdi-arrow-left"></i> <?= phrase('Back to Galleries'); ?>
</a>
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php endif; ?>