PHP Classes

File: templates/pagination/wrapper.php

Recommend this page to a friend!
  Packages 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: Merge commit 'ad2bbee761f90bd5be9ed7cafe1099856dc7827b' as 'jaxon-core'
Date: 4 months ago
Size: 224 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>