📄 columncallbackreplace.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: 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -