public function BookOutlineStorage::getBooks in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::getBooks()
Gets books (the highest positioned book links).
Return value
array An array of book IDs.
Overrides BookOutlineStorageInterface::getBooks
File
- core/
modules/ book/ src/ BookOutlineStorage.php, line 34 - Contains \Drupal\book\BookOutlineStorage.
Class
- BookOutlineStorage
- Defines a storage class for books outline.
Namespace
Drupal\bookCode
public function getBooks() {
return $this->connection
->query("SELECT DISTINCT(bid) FROM {book}")
->fetchCol();
}