protected function Table::isWebformNumeric in Views Aggregator Plus 8
Checks if the field is a Webform Submission Data Numeric 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 Numeric field.
4 calls to Table::isWebformNumeric()
- 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.
- Table::renderNewValue in src/
Plugin/ views/ style/ Table.php - Returns the rendered value for a new (raw) value of a table cell.
- Table::setCell in src/
Plugin/ views/ style/ Table.php - Render and set a raw value on the table cell in specified column and row.
File
- src/
Plugin/ views/ style/ Table.php, line 932
Class
- Table
- Style plugin to render each item as a row in a table.
Namespace
Drupal\views_aggregator\Plugin\views\styleCode
protected function isWebformNumeric($field_handler) {
return $field_handler
->getPluginId() === 'webform_submission_field_numeric';
}