You are here

public function NodeSearch::getType in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::getType()

Returns the search index type this plugin uses.

Return value

string|null The type used by this search plugin in the search index, or NULL if this plugin does not use the search index.

Overrides SearchPluginBase::getType

See also

search_index()

search_index_clear()

File

core/modules/node/src/Plugin/Search/NodeSearch.php, line 197
Contains \Drupal\node\Plugin\Search\NodeSearch.

Class

NodeSearch
Handles searching for node entities using the Search module index.

Namespace

Drupal\node\Plugin\Search

Code

public function getType() {
  return $this
    ->getPluginId();
}