├── .gitattributes └── modules └── registrars └── domainnameapi ├── cache └── index.php ├── childns.tpl ├── domainnameapi.php ├── lang ├── arabic.php ├── azerbaijani.php ├── bengali.php ├── chinese.php ├── duch.php ├── english.php ├── french.php ├── italian.php ├── japanese.php ├── portuguese.php ├── russian.php ├── spanish.php ├── swedish.php └── turkish.php ├── lib ├── Services │ └── Language.php ├── dna.php └── index.php ├── logo.gif └── whmcs.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/.gitattributes -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/cache/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/cache/index.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/childns.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/childns.tpl -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/domainnameapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/domainnameapi.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/arabic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/arabic.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/azerbaijani.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/azerbaijani.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/bengali.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/bengali.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/chinese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/chinese.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/duch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/duch.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/english.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/english.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/french.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/italian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/italian.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/japanese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/japanese.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/portuguese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/portuguese.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/russian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/russian.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/spanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/spanish.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/swedish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/swedish.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lang/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lang/turkish.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lib/Services/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lib/Services/Language.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lib/dna.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lib/dna.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/lib/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/lib/index.php -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/logo.gif -------------------------------------------------------------------------------- /modules/registrars/domainnameapi/whmcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domainreseller/whmcs-dna/HEAD/modules/registrars/domainnameapi/whmcs.json --------------------------------------------------------------------------------