This repository was archived by the owner on Apr 10, 2021. It is now read-only.

Description
== new details ==
please see coments below, this is now dealing with a libcurl ssl issue
original title: list_domain_details() should have limit and offset arguments
There might be other places where similar changes are needed, but I bumped into this one specifically. I have re-written the function thusly:
public function list_domain_details($domainID = false, $showRecords = false, $showSubdomains = false, $limit=false, $offset=false) {
if ($domainID == false || ! is_numeric ( $domainID )) {
return false;
}
$showRecords = ($showRecords == false) ? 'false' : 'true';
$showRecords = ($showSubdomains == false) ? 'false' : 'true';
$limit = ($limit != false && $limit > 0) ? "&limit=$limit" : '';
$offset = ($offset != false && $offset >= 0) ? "&offset=$offset" : '';
$url = "/domains/$domainID?showRecords=$showRecords&showSubdomains=$showSubdomains{$limit}{$offset}";
return $this->makeApiCall ( $url );
}