protected FormBase::config($name)
Retrieves a configuration object.
This is the main entry point to the configuration API. Calling
1 | $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
1 | \Drupal::config( 'book.admin' ) |
, the config object returned will contain the contents of book.admin configuration file.
Return value
\Drupal\Core\Config\ImmutableConfig A configuration object.
File
- core/lib/Drupal/Core/Form/FormBase.php, line 108
Class
- FormBase
- Provides a base class for forms.
Namespace
Drupal\Core\Form
Code
1 2 3 | protected function config( $name ) { return $this ->configFactory()->get( $name ); } |
Please login to continue.