PHP Classes

File: system/Pager/Views/default_head.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Task App   system/Pager/Views/default_head.php   Download  
File: system/Pager/Views/default_head.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: 1 month ago
Size: 374 bytes
 

Contents

Class file image Download
<?php
/**
 * @var \CodeIgniter\Pager\PagerRenderer $pager
 */

$pager->setSurroundCount(0);

if (
$pager->hasPrevious())
{
    echo
'<link rel="prev" href="' . $pager->getPrevious() . '">' . PHP_EOL;
}

echo
'<link rel="canonical" href="' . $pager->getCurrent() . '">' . PHP_EOL;

if (
$pager->hasNext())
{
    echo
'<link rel="next" href="' . $pager->getNext() . '">' . PHP_EOL;
}