You are here

public function BiblioCrossRefClient::__construct in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 modules/crossref/biblio.crossref.client.php \BiblioCrossRefClient::__construct()
  2. 7.2 modules/crossref/biblio.crossref.client.php \BiblioCrossRefClient::__construct()

File

modules/crossref/biblio.crossref.client.php, line 29

Class

BiblioCrossRefClient

Code

public function __construct($doi = '', $id = '') {
  $this
    ->setDOI($doi);
  $this
    ->setUserID($id);
  $this
    ->setURL(self::BASE_URL);
  $this->field_map = array();
  $this->type_map = array();
  $this->citation_list = FALSE;
}