PHP Classes

File: aksara/Modules/Xhr/Views/partial/language.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   aksara/Modules/Xhr/Views/partial/language.php   Download  
File: aksara/Modules/Xhr/Views/partial/language.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: security improvement and template fix
Date: 1 month ago
Size: 521 bytes
 

Contents

Class file image Download
<div>
    <?php foreach ($languages as $key => $val): ?>
<?php if ($key): ?>
<hr />
        <?php endif; ?>
<?php if ($val->code == get_userdata('language')): ?>
<b class="d-block">
                <?= $val->language; ?>
</b>
        <?php else: ?>
<a href="<?= base_url('xhr/language/' . $val->code); ?>" class="d-block --xhr">
                <?= $val->language; ?>
</a>
        <?php endif; ?>
<?php endforeach; ?>
</div>