Piwik\DataTable\Filter\
Executes a filter for each row of a DataTable and generates a segment filter for each row.
Basic usage example
$dataTable->filter('AddSegmentByRangeLabel', array('segmentName'));
The class defines the following methods:
__construct()
— Generates a segment filter based on the label column and the given segment namefilter()
enableRecursive()
ash; Enables/Disables recursive filtering. Inherited from BaseFilter
filterSubTable()
ash; Filters a row's subtable, if one exists and is loaded in memory. Inherited from BaseFilter
__construct()
Generates a segment filter based on the label column and the given segment name
It accepts the following parameter(s):
$table
(DataTable
) —
$segment
(string
) —
one segment
filter()
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.