PHP Classes

File: app/Views/Pages/bulma_simple.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Task App   app/Views/Pages/bulma_simple.php   Download  
File: app/Views/Pages/bulma_simple.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Task App
Create and manage tasks to be done
Author: By
Last change:
Date: 17 days ago
Size: 672 bytes
 

Contents

Class file image Download
<?php

/**
 * @var \CodeIgniter\Pager\PagerRenderer $pager
 */

$pager->setSurroundCount(0);
?>
<nav class="pagination">
    <ul class="pagination-list">
        <li class="pagination-previous" <?= $pager->hasPrevious() ? '' : 'class="disabled"' ?>>
            <a href="<?= $pager->getPrevious() ?? '#' ?>" aria-label="<?= lang('Pager.previous') ?>">
                <span aria-hidden="true"><?= lang('Pager.newer') ?></span>
            </a>
        </li>
        <li class="pagination-next" <?= $pager->hasNext() ? '' : 'class="disabled"' ?>>
            <a href="<?= $pager->getnext() ?? '#' ?>" aria-label="<?= lang('Pager.next') ?>">
                <span aria-hidden="true"><?= lang('Pager.older') ?></span>
            </a>
        </li>
    </ul>
</nav>