You are here

public function BookOutlineStorage::hasBooks in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::hasBooks()
  2. 9 core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::hasBooks()

File

core/modules/book/src/BookOutlineStorage.php, line 36

Class

BookOutlineStorage
Defines a storage class for books outline.

Namespace

Drupal\book

Code

public function hasBooks() {
  return (bool) $this->connection
    ->query('SELECT count([bid]) FROM {book}')
    ->fetchField();
}