public function Framework::moduleExists in Realistic Dummy Content 3.x
Same name and namespace in other branches
- 8.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::moduleExists()
- 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::moduleExists()
Check if a module exists.
Overrides FrameworkInterface::moduleExists
1 method overrides Framework::moduleExists()
- Drupal8::moduleExists in api/
src/ Framework/ Drupal8.php - Check if a module exists.
File
- api/
src/ Framework/ Framework.php, line 212
Class
- Framework
- The entry point for the framework.
Namespace
Drupal\realistic_dummy_content_api\FrameworkCode
public function moduleExists($module) {
return $this
->implementor()
->moduleExists($module);
}