public function OAuth2HTTPSBatch::__construct in Feeds OAuth 6
Constructor.
Overrides FeedsImportBatch::__construct
File
- ./
OAuth2HTTPSFetcher.inc, line 18
Class
- OAuth2HTTPSBatch
- Definition of the import batch object created on the fetching stage by OAuth2HTTPSFetcher.
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();
}