You are here

public function Database::setDataTypePluginManager in Search API 8

Sets the data type plugin manager.

Parameters

\Drupal\search_api\DataType\DataTypePluginManager $data_type_plugin_manager: The new data type plugin manager.

Return value

$this

File

modules/search_api_db/src/Plugin/search_api/backend/Database.php, line 310

Class

Database
Indexes and searches items using the database.

Namespace

Drupal\search_api_db\Plugin\search_api\backend

Code

public function setDataTypePluginManager(DataTypePluginManager $data_type_plugin_manager) {
  $this->dataTypePluginManager = $data_type_plugin_manager;
  return $this;
}