⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pagination.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php/** * @version		$Id: pagination.php 10822 2008-08-27 17:16:00Z tcp $ * @package		Joomla * @copyright	Copyright (C) 2005 - 2007 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. */// no direct accessdefined('_JEXEC') or die('Restricted access');/** * 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";	if ($lang->isRTL())	{		$html .= "\n<div class=\"counter\">".$list['pagescounter']."</div>";		$html .= $list['pageslinks'];		$html .= "\n<div class=\"limit\">".JText::_('Display Num').$list['limitfield']."</div>";	}	else	{		$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=\"pagination\">";	$html .= '<li>&laquo;</li>';	// Reverse output rendering for right-to-left display	if($lang->isRTL())	{		$html .= $list['start']['data'];		$html .= $list['previous']['data'];		$list['pages'] = array_reverse( $list['pages'] );		foreach( $list['pages'] as $page ) {			if($page['data']['active']) {				//  $html .= '<strong>';			}			$html .= $page['data'];			if($page['data']['active']) {				// $html .= '</strong>';			}		}		$html .= $list['next']['data'];		$html .= $list['end']['data'];		// $html .= '&#171;';	}	else	{		$html .= $list['start']['data'];		$html .= $list['previous']['data'];		foreach( $list['pages'] as $page )		{			if($page['data']['active']) {				// $html .= '<strong>';			}			$html .= $page['data'];			if($page['data']['active']) {				//  $html .= '</strong>';			}		}		$html .= $list['next']['data'];		$html .= $list['end']['data'];		// $html .= '&#171;';	}	$html .= '<li>&raquo;</li>';	$html .= "</ul>";	return $html;}function pagination_item_active(&$item) {	return "<li>&nbsp;<strong><a href=\"".$item->link."\" title=\"".$item->text."\">".$item->text."</a></strong>&nbsp;</li>";}function pagination_item_inactive(&$item) {	return "<li>&nbsp;<span>".$item->text."</span>&nbsp;</li>";}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -