eZ\Publish\Core\Persistence\Legacy\Content\Location\Handler::loadByRemoteId PHP Method

loadByRemoteId() public method

Loads the data for the location identified by $remoteId.
public loadByRemoteId ( string $remoteId ) : eZ\Publish\SPI\Persistence\Content\Location
$remoteId string
return eZ\Publish\SPI\Persistence\Content\Location
    public function loadByRemoteId($remoteId)
    {
        $data = $this->locationGateway->getBasicNodeDataByRemoteId($remoteId);
        return $this->locationMapper->createLocationFromRow($data);
    }