Functions
ModifyTransferLock() - Transfer Lock Update
It is used to update the transfer lock status of the domain name. public function ModifyTransferLock($params=[],$status=''){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $modify = $this->api->modify_transfer_loc...
isInactive() - Domain Name Inactive Control
It is used to check whether the domain name is passive or not. public function isInactive($params=[]){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $details = $this->api->get_details($domain); if(!$details){ ...
suspend() , unsuspend() , terminate()
In the case of (suspension, retrieval, deletion) of the domain name, these functions are used. Parameters; $params Provides the value of [options] index in the $order variable in the class. Retrieval Value; Boolean (true or false)
getAuthCode() - Get Transfer Code
It is used to view the transfer code of the domain name. public function getAuthCode($params=[]){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $details = $this->api->get_details($domain); if(!$details){ ...
modifyAuthCode() - Update Transfer Code
It is used to change the transfer code of the domain name. public function modifyAuthCode($params=[],$authCode=''){ $domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46); $modify = $this->api->modify_AuthCode($domain,...