You are here

public function SearchApiEntityFieldExport::defineOptions in REST Views 2.0.x

File

modules/rest_views_search_api/src/Plugin/views/field/SearchApiEntityFieldExport.php, line 80

Class

SearchApiEntityFieldExport
Display Search API Content Datasource field data in a serialized display.

Namespace

Drupal\rest_views_search_api\Plugin\views\field

Code

public function defineOptions() : array {
  $options = parent::defineOptions();
  unset($options['multi_type'], $options['separator']);
  return $options;
}