public function BiblioEntrezClient::getMaxDate in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getMaxDate()
- 6 pubmed/EntrezClient.php \BiblioEntrezClient::getMaxDate()
- 7.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getMaxDate()
Returns the maximum date of the specified date range bounding the results.
Return value
string
3 calls to BiblioEntrezClient::getMaxDate()
- BiblioEntrezClient::count in modules/
pubmed/ EntrezClient.php - Returns the number of results for the previously set search terms.
- 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 255 - Provides Entrez client to retrieve items from the NCBI databases.
Class
Code
public function getMaxDate() {
return $this->dateRange[1];
}