public function SearchPage::getPlugin in Drupal 8
Same name and namespace in other branches
- 9 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\EntityCode
public function getPlugin() {
return $this
->getPluginCollection()
->get($this->plugin);
}