BookOutlineStorage::hasBooks

public BookOutlineStorage::hasBooks()

Checks if there are any books.

Return value

bool TRUE if there are books, FALSE if not.

Overrides BookOutlineStorageInterface::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();
}
doc_Drupal
2016-10-29 08:48:25
Comments
Leave a Comment

Please login to continue.