public function FlowExport::export in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Controller/FlowExport.php \Drupal\cms_content_sync\Controller\FlowExport::export()
- 2.0.x src/Controller/FlowExport.php \Drupal\cms_content_sync\Controller\FlowExport::export()
Export flow.
Parameters
mixed $cms_content_sync_flow:
Throws
\Exception
1 string reference to 'FlowExport::export'
File
- src/
Controller/ FlowExport.php, line 23
Class
- FlowExport
- Push changes controller.
Namespace
Drupal\cms_content_sync\ControllerCode
public function export($cms_content_sync_flow) {
/**
* @var \Drupal\cms_content_sync\Entity\Flow $flow
*/
$flow = \Drupal::entityTypeManager()
->getStorage('cms_content_sync_flow')
->load($cms_content_sync_flow);
$pools = $flow
->getUsedPools();
if (empty($pools)) {
\Drupal::messenger()
->addError("This Flow doesn't use any Pools so nothing will be pushed or pulled. Please assign a Pool to this Flow first.");
return RedirectResponse::create(Url::fromRoute('entity.cms_content_sync_flow.collection')
->toString());
}
foreach ($pools as $pool) {
if (!PoolExport::validateBaseUrl($pool)) {
return new RedirectResponse(Url::fromRoute('entity.cms_content_sync_flow.collection')
->toString());
}
$pool_exporter = new SyncCorePoolExport($pool);
$sites = $pool_exporter
->verifySiteId();
if ($sites && count($sites)) {
$messenger = \Drupal::messenger();
$messenger
->addMessage($this
->t('This site id is not unique, site with id %id is already registered with base url %base_url. If you changed the site URL and want to force the export, please export the pool %pool manually first.', [
'%id' => array_keys($sites)[0],
'%base_url' => array_values($sites)[0],
'%pool' => $pool
->label(),
]), $messenger::TYPE_ERROR);
return new RedirectResponse(Url::fromRoute('entity.cms_content_sync_flow.collection')
->toString());
}
}
$exporter = new SyncCoreFlowExport($flow);
$batch = $exporter
->prepareBatch();
$operations = [];
for ($i = 0; $i < $batch
->count(); ++$i) {
$operations[] = [
[
$batch
->get($i),
'execute',
],
[],
];
}
$batch = [
'title' => t('Export configuration'),
'operations' => $operations,
'finished' => '\\Drupal\\cms_content_sync\\Controller\\FlowExport::batchFinished',
];
batch_set($batch);
return batch_process(Url::fromRoute('entity.cms_content_sync_flow.collection'));
}