function Download::create

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/migrate/process/Download.php \Drupal\migrate\Plugin\migrate\process\Download::create()
  2. 8.9.x core/modules/migrate/src/Plugin/migrate/process/Download.php \Drupal\migrate\Plugin\migrate\process\Download::create()
  3. 10 core/modules/migrate/src/Plugin/migrate/process/Download.php \Drupal\migrate\Plugin\migrate\process\Download::create()

Overrides ContainerFactoryPluginInterface::create

1 call to Download::create()
DownloadTest::doTransform in core/modules/migrate/tests/src/Kernel/process/DownloadTest.php
Runs an input value through the download plugin.

File

core/modules/migrate/src/Plugin/migrate/process/Download.php, line 105

Class

Download
Downloads a file from a HTTP(S) remote location into the local file system.

Namespace

Drupal\migrate\Plugin\migrate\process

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container->get('file_system'), $container->get('http_client'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.