Create configuration upon synchronizing configuration changes.
This callback is invoked when configuration is synchronized between storages and allows a module to take over the synchronization of configuration data.
string $name: The name of the configuration object.
\Drupal\Core\Config\Config $new_config: A configuration object containing the new configuration data.
\Drupal\Core\Config\Config $old_config: A configuration object containing the old configuration data.
public function importCreate($name, Config $new_config, Config $old_config) {
$entity = $this
->create($new_config
->get());
$entity
->save();
return TRUE;
}