protected function BookUninstallValidator::hasBookOutlines in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/book/src/BookUninstallValidator.php \Drupal\book\BookUninstallValidator::hasBookOutlines()
Checks if there are any books in an outline.
Return value
bool TRUE if there are books, FALSE if not.
1 call to BookUninstallValidator::hasBookOutlines()
- BookUninstallValidator::validate in core/
modules/ book/ src/ BookUninstallValidator.php - Determines the reasons a module can not be uninstalled.
File
- core/
modules/ book/ src/ BookUninstallValidator.php, line 79 - Contains \Drupal\book\BookUninstallValidator.
Class
- BookUninstallValidator
- Prevents book module from being uninstalled whilst any book nodes exist or there are any book outline stored.
Namespace
Drupal\bookCode
protected function hasBookOutlines() {
return $this->bookOutlineStorage
->hasBooks();
}