Pager::data()

TODO

Table of Contents
  1. Description
  2. Example

Description

Pager::data(): Traversable;

Example

<?php foreach ($pager->data as $v): ?>
  <a<?= $v->current ? ' aria-current="page"' : ""; ?> href="<?= eat($v->link); ?>" title="<?= eat($v->description); ?>">
    <?= $v->title; ?>
  </a>
<?php endforeach; ?>