protected function Table::isWebformField in Views Aggregator Plus 8
Checks if the field is a Webform Submission Data field.
Parameters
object $field_handler: The object belonging to the View result field.
Return value
bool TRUE if the field is a Webform Submission Data field.
2 calls to Table::isWebformField()
- Table::getCell in src/
Plugin/ views/ style/ Table.php - Returns the raw or rendered result at the intersection of column and row.
- Table::getCellRaw in src/
Plugin/ views/ style/ Table.php - Returns the raw, unrendered result at the intersection of column and row.
File
- src/
Plugin/ views/ style/ Table.php, line 945
Class
- Table
- Style plugin to render each item as a row in a table.
Namespace
Drupal\views_aggregator\Plugin\views\styleCode
protected function isWebformField($field_handler) {
return $field_handler
->getPluginId() === 'webform_submission_field';
}