You are here

protected function Table::isStandardField in Views Aggregator Plus 8

Returns whether the supplied field is a standard Views field.

Parameters

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

Return value

bool TRUE if the field is a standard Views field.

1 call to Table::isStandardField()
Table::renderNewValue in src/Plugin/views/style/Table.php
Returns the rendered value for a new (raw) value of a table cell.

File

src/Plugin/views/style/Table.php, line 893

Class

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

Namespace

Drupal\views_aggregator\Plugin\views\style

Code

protected function isStandardField($field_handler) {
  return $field_handler
    ->getPluginId() === 'field';
}