You are here

public function OAuthHTTPFetcherResult::__construct in Feeds OAuth 7

Constructor.

Overrides FeedsFetcherResult::__construct

File

./OAuthHTTPFetcher.inc, line 23
Definition of the import batch object created on the fetching stage by OAuthHTTPFetcher.

Class

OAuthHTTPFetcherResult
@file Definition of the import batch object created on the fetching stage by OAuthHTTPFetcher.

Code

public function __construct($url, $authenticator, $consumer_key, $consumer_secret, $id, $site_id, $method, $uid, $two = FALSE) {
  $this->url = $url;
  $this->authenticator = $authenticator;
  $this->consumer_key = $consumer_key;
  $this->consumer_secret = $consumer_secret;
  $this->id = $id;
  $this->site_id = $site_id;
  $this->method = $method;
  $this->uid = $uid;
  $this->two = $two;
  parent::__construct('');
}