Piwik\DataTable\Filter\
Adds goal related metrics to a DataTable using metrics that already exist.
Metrics added are:
Adding the filter_update_columns_when_show_all_goals query parameter to an API request will trigger the execution of this Filter.
Note: This filter must be called before ReplaceColumnNames is called.
Basic usage example
$dataTable->filter('AddColumnsProcessedMetricsGoal',
array($enable = true, $idGoal = Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER));
The class defines the following methods:
__construct() — Constructor.filter() — Adds the processed metrics.enableRecursive() ash; Enables/Disables recursive filtering. Inherited from BaseFilterfilterSubTable() ash; Filters a row's subtable, if one exists and is loaded in memory. Inherited from BaseFilter__construct()Constructor.
It accepts the following parameter(s):
$table (DataTable) —
$enable
$processOnlyIdGoal
$goalsToProcess
filter()Adds the processed metrics. See AddColumnsProcessedMetrics for more information.
It accepts the following parameter(s):
$table (DataTable) —It does not return anything or a mixed result.
enableRecursive()Enables/Disables recursive filtering. Whether this property is actually used is up to the derived BaseFilter class.
It accepts the following parameter(s):
$enable (bool) —It does not return anything or a mixed result.
filterSubTable()Filters a row's subtable, if one exists and is loaded in memory.
$row (Row) —
The row whose subtable should be filter.