Interface IRegistryModuleEach registry module must implement IRegistryModule and one of pollable interfaces:
IRegistryModuleServerPollable or IRegistryModuleClientPollable
Located in /modules/registries/interface.IRegistryModule.php (line 22)
IConfigurable | --IRegistryModule
| Class | Description |
|---|---|
IRegistryModuleServerPollable
|
Your module must implement this interface if registry does support automated polling. |
IRegistryModuleClientPollable
|
Your module must implement this interface if registry does not support automated polling. |
ChangeDomainOwnerResponse
ChangeDomainOwner
(Domain $domain, [integer $period = null], [array $extra = array()])
UpdateDomainContactResponse
UpdateDomainContact
(Domain $domain, string $contactType, Contact $oldContact, Contact $newContact)
static ValidateConfigurationFormData (line 44)
Called by he core to check either user filled all fields of your configuration form properly.
If you return true, all configuration data will be saved in database. If you return array, user will be presented with values of returned array as errors.
ChangeDomainOwner (line 73)
Send domain trade (change of the owner) request.
This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll.
ContactCanBeCreated (line 266)
Called to check either specific contact can be created
CreateDomain (line 124)
Register domain.
This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll. See IRegistryModuleClientPollable::PollCreateDomain().
CreateNameserverHost (line 239)
Create nameserver host (Nameserver derived from our own domain)
DeleteContact (line 303)
Delete contact
This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll. See IRegistryModuleClientPollable::PollDeleteContact().
DeleteDomain (line 176)
Completely delete domain from registry if it is delegated or recall domain name application if it was not yet delegated.
DeleteNameserverHost (line 258)
Delete namserver host from registry This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll.
See IRegistryModuleClientPollable::PollDeleteNameserverHost().
DomainCanBeRegistered (line 164)
Called to check either domain can be registered
DomainCanBeTransferred (line 61)
Called to check either domain can be transferred at this time.
GetRegistrarID (line 52)
Must return current Registrar ID (CLID). Generally, you can return registrar login here.
Used in transfer and some contact operations to determine either object belongs to current registrar.
GetRemoteContact (line 282)
Must return detailed information about contact from registry
NameserverCanBeCreated (line 223)
Check either this nameserver is a valid nameserver.
OnModuleDisabled (line 35)
OnModuleEnabled (line 29)
Called when module enabled in admin interface.
RenewDomain (line 185)
Send renew domain request
TransferApprove (line 206)
Approve domain transfer In order to pending operation, response must have status REGISTRY_RESPONSE_STATUS::PENDING
TransferReject (line 215)
Reject domain transfer
TransferRequest (line 196)
Send a request for domain transfer This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll.
See IRegistryModuleClientPollable::PollTransfer().
UpdateDomainAuthCode (line 112)
Update domain auth code.
UpdateDomainContact (line 145)
Swap domain's existing contact with another one This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll.
See IRegistryModuleClientPollable::PollCreateDomain().
UpdateDomainFlags (line 103)
Update domain flags.
This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll. See IRegistryModuleClientPollable::PollUpdateDomain().
UpdateDomainNameservers (line 156)
Change nameservers for specific domain This operation supports pending status. If you return response object with Status = REGISTRY_RESPONSE_STATUS.PENDING, you must return response later during a poll.
See IRegistryModuleClientPollable::PollUpdateDomain().
Documentation generated on Thu, 22 Apr 2010 15:16:27 +0300 by phpDocumentor 1.4.1