protected function ControllerBase::config in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Controller/ControllerBase.php \Drupal\Core\Controller\ControllerBase::config()
Retrieves a configuration object.
This is the main entry point to the configuration API. Calling
$this
->config('book.admin');
will return a configuration object in which the book module can store its administrative settings.
Parameters
string $name: The name of the configuration object to retrieve. The name corresponds to a configuration file. For
\Drupal::config('book.admin');
, the config object returned will contain the contents of book.admin configuration file.
Return value
\Drupal\Core\Config\Config A configuration object.
5 calls to ControllerBase::config()
- ContactController::contactSitePage in core/
modules/ contact/ src/ Controller/ ContactController.php - Presents the site-wide contact form.
- ForumController::build in core/
modules/ forum/ src/ Controller/ ForumController.php - Returns a renderable forum index page array.
- SystemController::themesPage in core/
modules/ system/ src/ Controller/ SystemController.php - Returns a theme listing.
- ThemeController::uninstall in core/
modules/ system/ src/ Controller/ ThemeController.php - Uninstalls a theme.
- UserController::resetPass in core/
modules/ user/ src/ Controller/ UserController.php - Returns the user password reset page.
File
- core/
lib/ Drupal/ Core/ Controller/ ControllerBase.php, line 195 - Contains \Drupal\Core\Controller\ControllerBase.
Class
- ControllerBase
- Utility base class for thin controllers.
Namespace
Drupal\Core\ControllerCode
protected function config($name) {
if (!$this->configFactory) {
$this->configFactory = $this
->container()
->get('config.factory');
}
return $this->configFactory
->get($name);
}