function BookOutlineStorage::loadMultiple

File

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

Class

BookOutlineStorage
Defines a storage class for books outline.

Namespace

Drupal\book

Code

public function loadMultiple($nids, $access = TRUE) {
  $query = $this->connection
    ->select('book', 'b', [
    'fetch' => \PDO::FETCH_ASSOC,
  ]);
  $query->fields('b');
  $query->condition('b.nid', $nids, 'IN');
  if ($access) {
    $query->addTag('node_access');
    $query->addMetaData('base_table', 'book');
  }
  return $query->execute();
}

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