You are here

protected function views_aggregator_plugin_style_table::is_standard_field in Views Aggregator Plus 7

Returns whether the supplied field is a standard Views field.

Parameters

object $field_handler: The views_handler_field_field object belonging to the View result field.

Return value

bool TRUE if the field is a standard Views field.

1 call to views_aggregator_plugin_style_table::is_standard_field()
views_aggregator_plugin_style_table::render_new_value in views/views_aggregator_plugin_style_table.inc
Returns the rendered value for a new (raw) value of a table cell.

File

views/views_aggregator_plugin_style_table.inc, line 658
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 is_standard_field($field_handler) {
  return is_a($field_handler, 'views_handler_field_field');
}