PHP Classes

File: aksara/Modules/Announcements/Views/read.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   aksara/Modules/Announcements/Views/read.php   Download  
File: aksara/Modules/Announcements/Views/read.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: 1 month ago
Size: 2,362 bytes
 

Contents

Class file image Download
<div class="py-3 py-md-5">
    <div class="container">
        <div class="row">
            <div class="col-lg-8 offset-lg-2">
                <?php if ($results): ?>
<h1 class="text-center text-md-start">
                        <?= $meta->title; ?>
</h1>
                    <?php foreach($results as $key => $val): ?>
<?php if ($val->cover && 'placeholder.png' != $val->cover): ?>
<img src="<?= get_image('announcements', $val->cover); ?>" class="img-fluid rounded-4 mb-3" alt="..." />
                        <?php endif; ?>
<div class="lead">
                            <?= $val->content; ?>
</div>
                        <p class="text-muted">
                            <em>
                                <?= phrase('This announcement will be effective until'); ?> <?= $val->end_date; ?>
</em>
                        </p>
                        <a href="<?= current_page('../'); ?>" class="btn btn-outline-primary rounded-pill px-5 --xhr">
                            <i class="mdi mdi-arrow-left"></i>
                            <?= phrase('Back'); ?>
</a>
                    <?php endforeach; ?>
<?php else: ?>
<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 announcement is found!'); ?>
</h2>
                        <p class="lead text-center">
                            <?= phrase('The announcement you requested was not found or its already been removed.'); ?>
</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 Announcements'); ?>
</a>
                        </p>
                    </div>
                <?php endif; ?>
</div>
        </div>
    </div>
</div>