You are here

public function FeedsImportBatch::feedNode in Feeds 6

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

Deprecated

This method is deprecated. Access directly instead. For example: $node = node_load($batch->feed_nid);

Return the feed node related to this batch object.

File

includes/FeedsBatch.inc, line 215

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 feedNode() {
  if ($this->feed_nid) {
    return node_load($this->feed_nid);
  }
}