function BookOutlineStorage::loadBookChildren

Same name and namespace in other branches
  1. 9 core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::loadBookChildren()
  2. 8.9.x core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::loadBookChildren()
  3. 10 core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::loadBookChildren()

File

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

Class

BookOutlineStorage
Defines a storage class for books outline.

Namespace

Drupal\book

Code

public function loadBookChildren($pid) {
    return $this->connection
        ->query("SELECT * FROM {book} WHERE [pid] = :pid", [
        ':pid' => $pid,
    ])
        ->fetchAllAssoc('nid', \PDO::FETCH_ASSOC);
}

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