function views_handler_field::use_string_group_by

3.x views_handler_field.inc views_handler_field::use_string_group_by()

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

handlers/views_handler_field.inc, line 388
@todo.

Class

views_handler_field
Base field handler that has no options and renders an unformatted field.

Code

function use_string_group_by() {
  return TRUE;
}