public function SearchPage::isIndexable in Drupal 8
Same name and namespace in other branches
- 9 core/modules/search/src/Entity/SearchPage.php \Drupal\search\Entity\SearchPage::isIndexable()
Determines if this search page entity is indexable.
Return value
bool TRUE if this search page entity is indexable, FALSE otherwise.
Overrides SearchPageInterface::isIndexable
File
- core/
modules/ search/ src/ Entity/ SearchPage.php, line 152
Class
- SearchPage
- Defines a configured search page.
Namespace
Drupal\search\EntityCode
public function isIndexable() {
return $this
->status() && $this
->getPlugin() instanceof SearchIndexingInterface;
}