You are here

public function BiblioEntrezClient::setTerm in Bibliography Module 6

Same name and namespace in other branches
  1. 6.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::setTerm()
  2. 7 modules/pubmed/EntrezClient.php \BiblioEntrezClient::setTerm()
  3. 7.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::setTerm()

Sets the search terms for the next query.

The search command uses terms or phrases with or without Boolean operators. See the PubMed or Entrez help for information about search field descriptions and tags. Search fields and tags are database specific.

Parameters

string $term:

File

pubmed/EntrezClient.php, line 196
EntrezClient.php Provides Entrez client to retrieve items from the NCBI databases Orginally writen by Stefan Freudenberg

Class

BiblioEntrezClient
@file EntrezClient.php Provides Entrez client to retrieve items from the NCBI databases Orginally writen by Stefan Freudenberg

Code

public function setTerm($term) {
  $this->term = $term;
  $this->webEnvironment = null;
  $this->count = null;
}