public function OAuthHTTPBatch::__construct in Feeds OAuth 6
Constructor.
Overrides FeedsImportBatch::__construct
File
- ./
OAuthHTTPFetcher.inc, line 18
Class
- OAuthHTTPBatch
- Definition of the import batch object created on the fetching stage by OAuthHTTPFetcher.
Code
public function __construct($url, $authenticator, $consumer_key, $consumer_secret, $site_id, $uid) {
$this->url = $url;
$this->authenticator = $authenticator;
$this->consumer_key = $consumer_key;
$this->consumer_secret = $consumer_secret;
$this->site_id = $site_id;
$this->uid = $uid;
parent::__construct();
}