public function ManyToOneHelper::buildOptionsForm

File

drupal/core/modules/views/lib/Drupal/views/ManyToOneHelper.php, line 36
Definition of Drupal\views\ManyToOneHelper.

Class

ManyToOneHelper
This many to one helper object is used on both arguments and filters.

Namespace

Drupal\views

Code

public function buildOptionsForm(&$form, &$form_state) {
  $form['reduce_duplicates'] = array(
    '#type' => 'checkbox',
    '#title' => t('Reduce duplicates'),
    '#description' => t('This filter can cause items that have more than one of the selected options to appear as duplicate results. If this filter causes duplicate results to occur, this checkbox can reduce those duplicates; however, the more terms it has to search for, the less performant the query will be, so use this with caution. Shouldn\'t be set on single-value fields, as it may cause values to disappear from display, if used on an incompatible field.'),
    '#default_value' => !empty($this->handler->options['reduce_duplicates']),
    '#weight' => 4,
  );
}