simple_forum-8.x-1.0/src/SimpleForumUninstallValidator.php
src/SimpleForumUninstallValidator.php
<?php
namespace Drupal\simple_forum;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleUninstallValidatorInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\StringTranslation\TranslationInterface;
/**
* Prevents forum module simple from being uninstalled whilst any simple forum nodes exist.
*/
class SimpleForumUninstallValidator implements ModuleUninstallValidatorInterface {
use StringTranslationTrait;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The config factory.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* Constructs a new SimpleForumUninstallValidator.
*
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory.
* @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
* The string translation service.
*/
public function __construct(EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory, TranslationInterface $string_translation) {
$this->entityTypeManager = $entity_type_manager;
$this->configFactory = $config_factory;
$this->stringTranslation = $string_translation;
}
/**
* {@inheritdoc}
*/
public function validate($module) {
$reasons = [];
if ($module == 'simple_forum') {
if ($this->hasForumNodes()) {
$reasons[] = $this->t('To uninstall Simple Forum, first delete all <em>Simple Forum</em> content');
}
}
return $reasons;
}
/**
* Determines if there are any simple forum nodes or not.
*
* @return bool
* TRUE if there are simple forum nodes, FALSE otherwise.
*/
protected function hasForumNodes() {
$nodes = $this->entityTypeManager->getStorage('node')->getQuery()
->condition('type', 'simple_forum')
->accessCheck(FALSE)
->range(0, 1)
->execute();
return !empty($nodes);
}
}
