You are here

protected function views_aggregator_plugin_style_table::apply_row_filters in Views Aggregator Plus 7

Filters out rows from the table based on a field cell matching a regexp.

1 call to views_aggregator_plugin_style_table::apply_row_filters()
views_aggregator_plugin_style_table::pre_render in views/views_aggregator_plugin_style_table.inc
Overrides pre_render().

File

views/views_aggregator_plugin_style_table.inc, line 344
views_aggregator_plugin_style_table.inc

Class

views_aggregator_plugin_style_table
Style plugin to render each item as a row in a table.

Code

protected function apply_row_filters() {
  $field_handlers = $this->view->field;
  foreach ($this->options['info'] as $field_name => $options) {
    if (!empty($options['has_aggr']) && in_array('views_aggregator_row_filter', $options['aggr'])) {
      views_aggregator_row_filter($this, $field_handlers[$field_name], $options['aggr_par']);
    }
  }
}