You are here

public function MigrateSourceXML::activeUrl in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 plugins/sources/xml.inc \MigrateSourceXML::activeUrl()

Returns the active Url.

Return value

string active Url

File

plugins/sources/xml.inc, line 1280
Support for migration from XML sources.

Class

MigrateSourceXML
Implementation of MigrateSource, to handle imports from XML files.

Code

public function activeUrl() {
  if (!is_null($this->activeUrl)) {
    return $this->sourceUrls[$this->activeUrl];
  }
}