You are here

public function FeedsParserResult::__construct in Feeds 7.2

Constructor.

File

plugins/FeedsParser.inc, line 21
Contains FeedsParser and related classes.

Class

FeedsParserResult
A result of a parsing stage.

Code

public function __construct($items = array()) {
  $this->title = '';
  $this->description = '';
  $this->link = '';
  $this->items = $items;
}