You are here

public static function Select2Boxes::isApplicable in Select2 Boxes 8

File

modules/select2_bef/src/Plugin/better_exposed_filters/filter/Select2Boxes.php, line 23

Class

Select2Boxes
Default widget implementation.

Namespace

Drupal\select2_bef\Plugin\better_exposed_filters\filter

Code

public static function isApplicable($filter = NULL, array $filter_options = []) {
  if ($filter instanceof InOperator) {
    return TRUE;
  }
  return FALSE;
}