You are here

abstract protected function DataParserPluginBase::openSourceUrl in Migrate Plus 8.3

Same name and namespace in other branches
  1. 8.5 src/DataParserPluginBase.php \Drupal\migrate_plus\DataParserPluginBase::openSourceUrl()
  2. 8 src/DataParserPluginBase.php \Drupal\migrate_plus\DataParserPluginBase::openSourceUrl()
  3. 8.2 src/DataParserPluginBase.php \Drupal\migrate_plus\DataParserPluginBase::openSourceUrl()
  4. 8.4 src/DataParserPluginBase.php \Drupal\migrate_plus\DataParserPluginBase::openSourceUrl()

Opens the specified URL.

Parameters

$url: URL to open.

Return value

bool TRUE if the URL was successfully opened, FALSE otherwise.

1 call to DataParserPluginBase::openSourceUrl()
DataParserPluginBase::nextSource in src/DataParserPluginBase.php
Advances the data parser to the next source url.
4 methods override DataParserPluginBase::openSourceUrl()
Json::openSourceUrl in src/Plugin/migrate_plus/data_parser/Json.php
Opens the specified URL.
SimpleXml::openSourceUrl in src/Plugin/migrate_plus/data_parser/SimpleXml.php
Opens the specified URL.
Soap::openSourceUrl in src/Plugin/migrate_plus/data_parser/Soap.php
Xml::openSourceUrl in src/Plugin/migrate_plus/data_parser/Xml.php
Opens the specified URL.

File

src/DataParserPluginBase.php, line 136

Class

DataParserPluginBase
Defines a base data parser implementation.

Namespace

Drupal\migrate_plus

Code

protected abstract function openSourceUrl($url);