public function ConfigImporter::doSyncStep in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::doSyncStep()
Calls a config import step.
Parameters
string|callable $sync_step: The step to do. Either a method on the ConfigImporter class or a callable.
array $context: A batch context array. If the config importer is not running in a batch the only array key that is used is $context['finished']. A process needs to set $context['finished'] = 1 when it is done.
Throws
\InvalidArgumentException Exception thrown if the $sync_step can not be called.
1 call to ConfigImporter::doSyncStep()
- ConfigImporter::import in core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php - Imports the changelist to the target storage.
File
- core/
lib/ Drupal/ Core/ Config/ ConfigImporter.php, line 490 - Contains \Drupal\Core\Config\ConfigImporter.
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\ConfigCode
public function doSyncStep($sync_step, &$context) {
if (!is_array($sync_step) && method_exists($this, $sync_step)) {
$this
->{$sync_step}($context);
}
elseif (is_callable($sync_step)) {
call_user_func_array($sync_step, array(
&$context,
$this,
));
}
else {
throw new \InvalidArgumentException('Invalid configuration synchronization step');
}
}