PHP Classes

File: templates/pagination/wrapper.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon   templates/pagination/wrapper.php   Download  
File: templates/pagination/wrapper.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change: Improved pagination renderer.
Date: 4 years ago
Size: 226 bytes
 

Contents

Class file image Download
<ul class="pagination">
<?php
   
if(($this->prev))
    {
        echo
$this->prev;
    }
    foreach(
$this->links as $link)
    {
        echo
$link;
    }
    if((
$this->next))
    {
        echo
$this->next;
    }
?>
</ul>