SearchPageRepository::isSearchActive

public SearchPageRepository::isSearchActive()

Returns whether search is active.

Return value

bool TRUE if at least one search is active, FALSE otherwise.

Overrides SearchPageRepositoryInterface::isSearchActive

File

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

Class

SearchPageRepository
Provides a repository for Search Page config entities.

Namespace

Drupal\search

Code

public function isSearchActive() {
  return (bool) $this->getQuery()
    ->condition('status', TRUE)
    ->range(0, 1)
    ->execute();
}
doc_Drupal
2016-10-29 09:40:45
Comments
Leave a Comment

Please login to continue.