datatablesummary.php

来自「希望此段源编码能给所有需要它的朋友带去快乐」· PHP 代码 · 共 34 行

PHP
34
字号
<?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: DataTableSummary.php 519 2008-06-09 01:59:24Z matt $ *  * @package Piwik_DataTable *//** * This class creates a row from a given DataTable.  * The row contains  * - for each numeric column, the returned "summary" column is the sum of all the subRows * - for every other column, it is ignored and will not be in the "summary row" *  * @see Piwik_DataTable_Row::sumRow() for more information on the algorithm *  * @package Piwik_DataTable * @subpackage Piwik_DataTable_Row */class Piwik_DataTable_Row_DataTableSummary extends Piwik_DataTable_Row{	function __construct($subTable)	{		parent::__construct();		foreach($subTable->getRows() as $row)		{			$this->sumRow($row);		}	}}

⌨️ 快捷键说明

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