columncallbackreplace.php
来自「希望此段源编码能给所有需要它的朋友带去快乐」· PHP 代码 · 共 48 行
PHP
48 行
<?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: ColumnCallbackReplace.php 444 2008-04-11 13:38:22Z johmathe $ * * @package Piwik_DataTable *//** * Replace a column value with a new value resulting * from the function called with the column's value * * @package Piwik_DataTable * @subpackage Piwik_DataTable_Filter */class Piwik_DataTable_Filter_ColumnCallbackReplace extends Piwik_DataTable_Filter{ private $columnToFilter; private $functionToApply; public function __construct( $table, $columnToFilter, $functionToApply, $functionParameters = null ) { parent::__construct($table); $this->functionToApply = $functionToApply; $this->functionParameters = $functionParameters; $this->columnToFilter = $columnToFilter; $this->filter(); } protected function filter() { foreach($this->table->getRows() as $key => $row) { $parameters = array($row->getColumn($this->columnToFilter)); if(!is_null($this->functionParameters)) { $parameters = array_merge($parameters, $this->functionParameters); } $newValue = call_user_func_array( $this->functionToApply, $parameters); $row->setColumn($this->columnToFilter, $newValue); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?