You are here

public function MigrateSourceXML::activeUrl in Migrate 6.2

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

Returns the active Url.

Return value

string

File

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

Class

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

Code

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