public function BiblioEntrezClient::getReturnMax in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getReturnMax()
- 6 pubmed/EntrezClient.php \BiblioEntrezClient::getReturnMax()
- 7.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getReturnMax()
Returns the maximum number of items retrieved by a search query.
Return value
int
2 calls to BiblioEntrezClient::getReturnMax()
- BiblioEntrezClient::fetchRecords in modules/
pubmed/ EntrezClient.php - Returns up to the maximum number of results starting at $retstart found by the previous search.
- BiblioEntrezClient::search in modules/
pubmed/ EntrezClient.php - Returns up to the maximum number of items from the result set starting at $retstart.
File
- modules/
pubmed/ EntrezClient.php, line 275 - Provides Entrez client to retrieve items from the NCBI databases.
Class
Code
public function getReturnMax() {
return $this->returnMax;
}