You are here

final public function FeedImportReader::__construct in Feed Import 7.3

Constructor of reader. Constructor is final but you'll have to implement init() to init your reader.

Parameters

array $options An array of options to pass to reader:

File

feed_import_base/inc/feed_import_abstract.inc, line 63
This file contains abstract classes and interfaces for feed import.

Class

FeedImportReader
Abstract implementation of reader.

Code

public final function __construct(array $options = array()) {
  $this
    ->setOptions($options);
}