You are here

public function DefaultPathHandler::pull in CMS Content Sync 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/cms_content_sync/field_handler/DefaultPathHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\field_handler\DefaultPathHandler::pull()
  2. 2.1.x src/Plugin/cms_content_sync/field_handler/DefaultPathHandler.php \Drupal\cms_content_sync\Plugin\cms_content_sync\field_handler\DefaultPathHandler::pull()

Parameters

\Drupal\cms_content_sync\SyncIntent $intent: The request containing all pushed data

Return value

bool Whether or not the content has been pulled. FALSE is a desired state, meaning the entity should not be pulled according to config.

Throws

\Drupal\cms_content_sync\Exception\SyncException

Overrides FieldHandlerBase::pull

File

src/Plugin/cms_content_sync/field_handler/DefaultPathHandler.php, line 67

Class

DefaultPathHandler
Providing an implementation for the "path" field type of content entities.

Namespace

Drupal\cms_content_sync\Plugin\cms_content_sync\field_handler

Code

public function pull(PullIntent $intent) {
  return parent::pull($intent);
}