Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
13 / 13
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/*
3 * This file is part of Aplus Framework Pagination Library.
4 *
5 * (c) Natan Felles <natanfelles@gmail.com>
6 *
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
10/**
11 * @var Framework\Pagination\Pager $pager
12 */
13$language = $pager->getLanguage();
14?>
15<div class="w3-center">
16    <div class="w3-bar">
17        <?php if ($pager->getPreviousPage()) : ?>
18            <a rel="prev" href="<?= $pager->getPreviousPageUrl() ?>" class="w3-button">
19                <?= $language->render('pagination', 'previous') ?>
20            </a>
21        <?php endif ?>
22
23        <?php if ($pager->getNextPage()) : ?>
24            <a rel="next" href="<?= $pager->getNextPageUrl() ?>" class="w3-button">
25                <?= $language->render('pagination', 'next') ?>
26            </a>
27        <?php endif ?>
28    </div>
29</div>