function FieldPluginBase::use_string_group_by in Views (for Drupal 7) 8.3
Determines if this field will be available as an option to group the result by in the style settings.
Return value
bool TRUE if this field handler is groupable, otherwise FALSE.
File
- lib/
Drupal/ views/ Plugin/ views/ field/ FieldPluginBase.php, line 398 - Definition of Drupal\views\Plugin\views\field\FieldPluginBase.
Class
- FieldPluginBase
- Base field handler that has no options and renders an unformatted field.
Namespace
Drupal\views\Plugin\views\fieldCode
function use_string_group_by() {
return TRUE;
}