%PDF- %PDF-
| Direktori : /home/lightco1/www/ilfanale.com.au/templates/jsn_mobilize/html/ |
| Current File : /home/lightco1/www/ilfanale.com.au/templates/jsn_mobilize/html/pagination.php |
<?php
/**
* @version $Id$
* @package JSN_Mobilize
* @subpackage SystemPlugin
* @author JoomlaShine Team <support@joomlashine.com>
* @copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved.
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
*
* Websites: http://www.joomlashine.com
* Technical Support: Feedback - http://www.joomlashine.com/contact-us/get-support.html
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// Load template framework
/**
* This is a file to add template specific chrome to pagination rendering.
*
* pagination_list_footer
* Input variable $list is an array with offsets:
* $list[limit] : int
* $list[limitstart] : int
* $list[total] : int
* $list[limitfield] : string
* $list[pagescounter] : string
* $list[pageslinks] : string
*
* pagination_list_render
* Input variable $list is an array with offsets:
* $list[all]
* [data] : string
* [active] : boolean
* $list[start]
* [data] : string
* [active] : boolean
* $list[previous]
* [data] : string
* [active] : boolean
* $list[next]
* [data] : string
* [active] : boolean
* $list[end]
* [data] : string
* [active] : boolean
* $list[pages]
* [{PAGE}][data] : string
* [{PAGE}][active] : boolean
*
* pagination_item_active
* Input variable $item is an object with fields:
* $item->base : integer
* $item->link : string
* $item->text : string
*
* pagination_item_inactive
* Input variable $item is an object with fields:
* $item->base : integer
* $item->link : string
* $item->text : string
*
* This gives template designers ultimate control over how pagination is rendered.
*
* NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
*/
function pagination_list_footer($list)
{
// Initialize variables
$lang = JFactory::getLanguage();
$html = "<div class=\"list-footer\">\n";
$html .= "\n<div class=\"limit\">".JText::_('Display Num').$list['limitfield']."</div>";
$html .= $list['pageslinks'];
$html .= "\n<div class=\"counter\">".$list['pagescounter']."</div>";
$html .= "\n<input type=\"hidden\" name=\"limitstart\" value=\"".$list['limitstart']."\" />";
$html .= "\n</div>";
return $html;
}
function pagination_list_render($list)
{
// Initialize variables
$lang = JFactory::getLanguage();
$html = "<ul class=\"jsn-pagination\">";
$html .= "<li>".$list['start']['data']."</li>";
$html .= "<li>".$list['previous']['data']."</li>";
foreach( $list['pages'] as $page )
{
if(isset($page['data']['active']) && $page['data']['active']) {
$html .= '<li class="navigation-page">';
}
$html .= $page['data'];
if(isset($page['data']['active']) && $page['data']['active']) {
$html .= '</li>';
}
}
$html .= "<li>".$list['next']['data']."</li>";
$html .= "<li>".$list['end']['data']."</li>";
// $html .= '«';
$html .= "</ul>";
return $html;
}
function pagination_item_active(&$item) {
return " <a href=\"".$item->link."\" title=\"".$item->text."\">".$item->text."</a> ";
}
function pagination_item_inactive(&$item) {
return " <span>".$item->text."</span> ";
}
?>