You are here

public function SearchPage::getPlugin in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/search/src/Entity/SearchPage.php \Drupal\search\Entity\SearchPage::getPlugin()

Returns the search plugin.

Return value

\Drupal\search\Plugin\SearchInterface The search plugin used by this search page entity.

Overrides SearchPageInterface::getPlugin

1 call to SearchPage::getPlugin()
SearchPage::isIndexable in core/modules/search/src/Entity/SearchPage.php
Determines if this search page entity is indexable.

File

core/modules/search/src/Entity/SearchPage.php, line 117

Class

SearchPage
Defines a configured search page.

Namespace

Drupal\search\Entity

Code

public function getPlugin() {
  return $this
    ->getPluginCollection()
    ->get($this->plugin);
}