public ConfigNamesMapper::getConfigData()
Returns an array with all configuration data.
Return value
array Configuration data keyed by configuration names.
Overrides ConfigMapperInterface::getConfigData
File
- core/modules/config_translation/src/ConfigNamesMapper.php, line 415
Class
- ConfigNamesMapper
- Configuration mapper base implementation.
Namespace
Drupal\config_translation
Code
1 2 3 4 5 6 7 | public function getConfigData() { $config_data = array (); foreach ( $this ->getConfigNames() as $name ) { $config_data [ $name ] = $this ->configFactory->getEditable( $name )->get(); } return $config_data ; } |
Please login to continue.