You are here

function content_handler_field_multiple::click_sortable in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 6.2 includes/views/handlers/content_handler_field_multiple.inc \content_handler_field_multiple::click_sortable()

Determine if this field is click sortable.

File

includes/views/handlers/content_handler_field_multiple.inc, line 110
An extended subclass for field handling that adds multiple field grouping.

Class

content_handler_field_multiple
@file An extended subclass for field handling that adds multiple field grouping.

Code

function click_sortable() {
  $field = $this->content_field;
  $options = $this->options;

  // Grouped fields are not click-sortable.
  return !empty($this->definition['click sortable']) && !$this->defer_query;
}