You are here

public function FeedsImportBatch::getLink in Feeds 6

Same name and namespace in other branches
  1. 7 includes/FeedsBatch.inc \FeedsImportBatch::getLink()

Return value

A string that is the link to the feed's site (not the actual URL of the feed). Falls back to URL if not available.

Deprecated

This method is deprecated. Access directly instead. For example: $link = $batch->link;

File

includes/FeedsBatch.inc, line 254

Class

FeedsImportBatch
A FeedsImportBatch wraps the actual content retrieved from a FeedsSource. On import, it is created on the fetching stage and passed through the parsing and processing stage where it is normalized and consumed.

Code

public function getLink() {
  return $this->link;
}