You are here

function drush_cms_content_sync_content_sync_force_pull_entity in CMS Content Sync 2.0.x

Same name and namespace in other branches
  1. 8 cms_content_sync.drush.inc \drush_cms_content_sync_content_sync_force_pull_entity()
  2. 2.1.x cms_content_sync.drush.inc \drush_cms_content_sync_content_sync_force_pull_entity()

Kindly ask the Sync Core to force pull a specific entity.

Parameters

string $flow_id:

string $entity_type:

string $entity_uuid:

Deprecated

Function is deprecated and is going to be removed in 2.0, use pull() instead.

File

./cms_content_sync.drush.inc, line 184
Contains Drush commands for Content Sync.

Code

function drush_cms_content_sync_content_sync_force_pull_entity($flow_id, $entity_type, $entity_uuid) {
  Drupal::service('cms_content_sync.cli')
    ->force_pull_entity(new Drush8Io(), $flow_id, $entity_type, $entity_uuid);
}