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

📄 addsummaryrow.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: Limit.php 168 2008-01-14 05:26:43Z matt $ * * @package Piwik_DataTable *//** * Add a new row to the table containing a summary * of the rows from StartRowToSummarize to EndRowToSummarize. * It then deletes the rows from StartRowToSummarize to EndRowToSummarize. * The new row created has a label = 'other' * * This filter is useful to build a more compact view of a table, * keeping the first records unchanged. * * For example we use this for the pie chart, to build the last pie part * which is the sum of all the remaining data after the top 5 data. * This row is assigned a label of 'Others'. * * @package Piwik_DataTable * @subpackage Piwik_DataTable_Filter */class Piwik_DataTable_Filter_AddSummaryRow extends Piwik_DataTable_Filter{	public function __construct( $table, $startRowToSummarize, $labelSummaryRow = Piwik_DataTable::LABEL_SUMMARY_ROW, $columnToSortByBeforeTruncating = Piwik_Archive::INDEX_NB_VISITS )	{		parent::__construct($table);		$this->startRowToSummarize = $startRowToSummarize;		$this->labelSummaryRow = $labelSummaryRow;		$this->columnToSortByBeforeTruncating = $columnToSortByBeforeTruncating;		if($table->getRowsCount() > $startRowToSummarize + 1)		{			$this->filter();		}	}	protected function filter()	{		$filter = new Piwik_DataTable_Filter_Sort($this->table, $this->columnToSortByBeforeTruncating, 'desc');				$rows = $this->table->getRows();		$count = $this->table->getRowsCount();		$newRow = new Piwik_DataTable_Row();		for($i = $this->startRowToSummarize; $i < $count; $i++)		{			if(!isset($rows[$i]))			{				// case when the last row is a summary row, it is not indexed by $cout but by Piwik_DataTable::ID_SUMMARY_ROW				$summaryRow = $this->table->getRowFromId(Piwik_DataTable::ID_SUMMARY_ROW);				$newRow->sumRow($summaryRow);			}			else			{				$newRow->sumRow($rows[$i]);			}		}				$newRow->addColumn('label', $this->labelSummaryRow);		$filter = new Piwik_DataTable_Filter_Limit($this->table, 0, $this->startRowToSummarize);		$this->table->addSummaryRow($newRow);	}}

⌨️ 快捷键说明

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