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

📄 sort.php

📁 Piwik#Opensourcewebanalytics一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大.无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 PHP
字号:
<?php/** * Piwik - Open source web analytics *  * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: Sort.php 519 2008-06-09 01:59:24Z matt $ *  * @package Piwik_DataTable *//** * Sort the DataTable based on the value of column $columnToSort ordered by $order. * Possible to specify a natural sorting (see php.net/natsort for details) * @package Piwik_DataTable * @subpackage Piwik_DataTable_Filter  */class Piwik_DataTable_Filter_Sort extends Piwik_DataTable_Filter{	protected $columnToSort;	protected $order;		public function __construct( $table, $columnToSort, $order = 'desc', $naturalSort = false )	{		parent::__construct($table);		$this->columnToSort = $columnToSort;		$this->naturalSort = $naturalSort;		$this->setOrder($order);		$this->filter();	}		function setOrder($order)	{		if($order == 'asc')		{			$this->order = 'asc';			$this->sign = 1;		}		else		{			$this->order = 'desc';			$this->sign = -1;		}	}		function sort($a, $b)	{		return 					(						(!isset($a->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort])							&&  !isset($b->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort])						)						? 0 						: (							!isset($a->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort])							? 1							:(							 	!isset($b->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort])								? -1								: $this->sign * ( 									$a->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort] 										< $b->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort] 									? -1 									: 1								)							)						)					)				;	}		function naturalSort($a, $b)	{		return $this->sign * strnatcasecmp( 				$a->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort], 				$b->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort]			);	}		function sortString($a, $b)	{		return $this->sign * 				strcasecmp($a->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort], 					$b->c[Piwik_DataTable_Row::COLUMNS][$this->columnToSort] 			);	}		/**	 * @param Piwik_DataTable_Row	 */	protected function selectColumnToSort($row)	{		$value = $row->getColumn($this->columnToSort);		if($value !== false)		{			return $this->columnToSort;		}				// sorting by "nb_visits" but the index is Piwik_Archive::INDEX_NB_VISITS in the table		if(isset(Piwik_Archive::$mappingFromNameToId[$this->columnToSort]))		{			$column = Piwik_Archive::$mappingFromNameToId[$this->columnToSort];			$value = $row->getColumn($column);			if($value !== false)			{				return $column;			}		}				// eg. was previously sorted by revenue_per_visit, but this table 		// doesn't have this column; defaults with nb_visits		$column = Piwik_Archive::INDEX_NB_VISITS;		$value = $row->getColumn($column);		if($value !== false)		{			return $column;		}				return false;	}	protected function filter()	{		if($this->table instanceof Piwik_DataTable_Simple)		{			return;		}		$rows = $this->table->getRows();		if(count($rows) == 0)		{			return;		}		$row = current($rows);		$this->columnToSort = $this->selectColumnToSort($row);				if($this->columnToSort === false)		{			return;		}				$value = $row->getColumn($this->columnToSort);		if( Piwik::isNumeric($value))		{			$methodToUse = "sort";		}		else		{			if($this->naturalSort)			{				$methodToUse = "naturalSort";			}			else			{				$methodToUse = "sortString";			}		}		$this->table->sort( array($this,$methodToUse), $this->columnToSort );	}}

⌨️ 快捷键说明

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