Mercurial > hg > isophonics-drupal-site
comparison core/modules/config/src/Form/ConfigSync.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 1fec387a4317 |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
340 'finished' => [get_class($this), 'finishBatch'], | 340 'finished' => [get_class($this), 'finishBatch'], |
341 'title' => t('Synchronizing configuration'), | 341 'title' => t('Synchronizing configuration'), |
342 'init_message' => t('Starting configuration synchronization.'), | 342 'init_message' => t('Starting configuration synchronization.'), |
343 'progress_message' => t('Completed step @current of @total.'), | 343 'progress_message' => t('Completed step @current of @total.'), |
344 'error_message' => t('Configuration synchronization has encountered an error.'), | 344 'error_message' => t('Configuration synchronization has encountered an error.'), |
345 'file' => __DIR__ . '/../../config.admin.inc', | |
346 ]; | 345 ]; |
347 foreach ($sync_steps as $sync_step) { | 346 foreach ($sync_steps as $sync_step) { |
348 $batch['operations'][] = [[get_class($this), 'processBatch'], [$config_importer, $sync_step]]; | 347 $batch['operations'][] = [[get_class($this), 'processBatch'], [$config_importer, $sync_step]]; |
349 } | 348 } |
350 | 349 |