You are here

public function BookUninstallValidator::validate in Drupal 10

Same name in this branch
  1. 10 core/modules/book/src/BookUninstallValidator.php \Drupal\book\BookUninstallValidator::validate()
  2. 10 core/modules/book/src/ProxyClass/BookUninstallValidator.php \Drupal\book\ProxyClass\BookUninstallValidator::validate()
Same name and namespace in other branches
  1. 8 core/modules/book/src/BookUninstallValidator.php \Drupal\book\BookUninstallValidator::validate()
  2. 9 core/modules/book/src/BookUninstallValidator.php \Drupal\book\BookUninstallValidator::validate()

File

core/modules/book/src/BookUninstallValidator.php, line 51

Class

BookUninstallValidator
Prevents book module from being uninstalled whilst any book nodes exist or there are any book outline stored.

Namespace

Drupal\book

Code

public function validate($module) {
  $reasons = [];
  if ($module == 'book') {
    if ($this
      ->hasBookOutlines()) {
      $reasons[] = $this
        ->t('To uninstall Book, delete all content that is part of a book');
    }
    else {

      // The book node type is provided by the Book module. Prevent uninstall
      // if there are any nodes of that type.
      if ($this
        ->hasBookNodes()) {
        $reasons[] = $this
          ->t('To uninstall Book, delete all content that has the Book content type');
      }
    }
  }
  return $reasons;
}