function BookOutlineStorage::update
Same name in other branches
- 8.9.x core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::update()
- 10 core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::update()
- 11.x core/modules/book/src/BookOutlineStorage.php \Drupal\book\BookOutlineStorage::update()
Overrides BookOutlineStorageInterface::update
File
-
core/
modules/ book/ src/ BookOutlineStorage.php, line 143
Class
- BookOutlineStorage
- Defines a storage class for books outline.
Namespace
Drupal\bookCode
public function update($nid, $fields) {
return $this->connection
->update('book')
->fields($fields)
->condition('nid', $nid)
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.