function BookOutlineStorage::delete

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

Deletes a book entry.

Parameters

int $nid: Deletes a book entry.

Return value

mixed Number of deleted book entries.

Overrides BookOutlineStorageInterface::delete

File

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

Class

BookOutlineStorage
Defines a storage class for books outline.

Namespace

Drupal\book

Code

public function delete($nid) {
  return $this->connection
    ->delete('book')
    ->condition('nid', $nid)
    ->execute();
}

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