File: /var/www/vhosts/pgkdistribution.com.au/citisolar.com.au/tmp/site/helper/paginationjs.php
<?php
/**
* @Copyright Freestyle Joomla (C) 2010
* @license GNU/GPL http://www.gnu.org/copyleft/gpl.html
*
* This file is part of Freestyle Testimonials
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
?>
<?php
/**
* @version $Id: pagination.php 10707 2008-08-21 09:52:47Z eddieajau $
* @package Joomla.Framework
* @subpackage HTML
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
jimport( 'joomla.html.pagination');
require_once (JPATH_SITE.DS.'components'.DS.'com_fst'.DS.'helper'.DS.'paginationex.php');
/**
* Pagination Class. Provides a common interface for content pagination for the
* Joomla! Framework
*
* @package Joomla.Framework
* @subpackage HTML
* @since 1.5
*/
class JPaginationJS extends JPaginationEx
{
function _item_active(&$item)
{
if($item->base>0)
return "<a href='' title=\"".$item->text."\" onclick=\"javascript: document.adminForm.limitstart.value=".$item->base.";submitform();return false;\" class=\"pagenav\">".$item->text."</a>";
else
return "<a href='' title=\"".$item->text."\" onclick=\"javascript: document.adminForm.limitstart.value=0;submitform();return false;\" class=\"pagenav\">".$item->text."</a>";
}
}