public function Drupal8::moduleExists in Realistic Dummy Content 3.x
Same name and namespace in other branches
- 8.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::moduleExists()
- 7.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::moduleExists()
Check if a module exists.
Overrides Framework::moduleExists
File
- api/
src/ Framework/ Drupal8.php, line 275
Class
- Drupal8
- Drupal 8-specific code.
Namespace
Drupal\realistic_dummy_content_api\FrameworkCode
public function moduleExists($module) {
// @phpstan-ignore-next-line
return \Drupal::moduleHandler()
->moduleExists($module);
}