public function Framework::configGet 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::configGet()
- 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::configGet()
Gets configuration value.
Overrides FrameworkInterface::configGet
1 method overrides Framework::configGet()
- Drupal8::configGet in api/
src/ Framework/ Drupal8.php - Gets configuration value.
File
- api/
src/ Framework/ Framework.php, line 80
Class
- Framework
- The entry point for the framework.
Namespace
Drupal\realistic_dummy_content_api\FrameworkCode
public function configGet($name, $default = NULL) {
return $this
->implementor()
->configGet($name, $default);
}