function SearchPageRepository::getIndexableSearchPages

Same name and namespace in other branches
  1. 9 core/modules/search/src/SearchPageRepository.php \Drupal\search\SearchPageRepository::getIndexableSearchPages()
  2. 8.9.x core/modules/search/src/SearchPageRepository.php \Drupal\search\SearchPageRepository::getIndexableSearchPages()
  3. 11.x core/modules/search/src/SearchPageRepository.php \Drupal\search\SearchPageRepository::getIndexableSearchPages()

Returns all active, indexable search page entities.

Return value

\Drupal\search\SearchPageInterface[] An array of indexable search page entities.

Overrides SearchPageRepositoryInterface::getIndexableSearchPages

File

core/modules/search/src/SearchPageRepository.php, line 63

Class

SearchPageRepository
Provides a repository for Search Page config entities.

Namespace

Drupal\search

Code

public function getIndexableSearchPages() {
  return array_filter($this->getActiveSearchPages(), function (SearchPageInterface $search) {
    return $search->isIndexable();
  });
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.