-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80f377d
commit 7690845
Showing
29 changed files
with
1,269 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of CheckAvailability | ||
* | ||
* @author inbs | ||
*/ | ||
class CheckAvailability extends Call | ||
{ | ||
public $action = "domains/lookup"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of DeleteNameServer | ||
* | ||
* @author inbs | ||
*/ | ||
class DeleteNameServer extends Call | ||
{ | ||
public $action = "domains/:domain/nameservers/delete"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetContactDetails | ||
* | ||
* @author inbs | ||
*/ | ||
class GetContactDetails extends Call | ||
{ | ||
public $action = "domains/:domain/contact"; | ||
|
||
public $type = parent::TYPE_GET; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetDns | ||
* | ||
* @author inbs | ||
*/ | ||
class GetDns extends Call | ||
{ | ||
public $action = "domains/:domain/dns"; | ||
|
||
public $type = parent::TYPE_GET; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetEmailForwarding | ||
* | ||
* @author inbs | ||
*/ | ||
class GetEmailForwarding extends Call | ||
{ | ||
public $action = "domains/:domain/email"; | ||
|
||
public $type = parent::TYPE_GET; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetEppCode | ||
* | ||
* @author inbs | ||
*/ | ||
class GetEppCode extends Call | ||
{ | ||
public $action = "domains/:domain/eppcode"; | ||
|
||
public $type = parent::TYPE_GET; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetNameServers | ||
* | ||
* @author inbs | ||
*/ | ||
class GetNameServers extends Call | ||
{ | ||
public $action = "domains/:domain/nameservers"; | ||
|
||
public $type = parent::TYPE_GET; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class GetRegistrarLock extends Call | ||
{ | ||
public $action = "domains/:domain/lock"; | ||
|
||
public $type = parent::TYPE_GET; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class ModifyNameServer extends Call | ||
{ | ||
public $action = "domains/:domain/nameservers/modify"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of RegisterDomain | ||
* | ||
* @author Paweł Złamaniec <pawel.zl@modulesgarden.com> | ||
*/ | ||
class RegisterDomain extends Call | ||
{ | ||
public $action = "order/domains/register"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of RegisterNameServer | ||
* | ||
* @author inbs | ||
*/ | ||
class RegisterNameServer extends Call | ||
{ | ||
public $action = "domains/:domain/nameservers/register"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class ReleaseDomain extends Call | ||
{ | ||
public $action = "domains/:domain/release"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of RenewDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class RenewDomain extends Call | ||
{ | ||
public $action = "order/domains/renew"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of RequestDelete | ||
* | ||
* @author inbs | ||
*/ | ||
class RequestDelete extends Call | ||
{ | ||
public $action = "domains/:domain/delete"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class SaveContactDetails extends Call | ||
{ | ||
public $action = "domains/:domain/contact"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class SaveDns extends Call | ||
{ | ||
public $action = "domains/:domain/dns"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetNameServers | ||
* | ||
* @author inbs | ||
*/ | ||
class SaveEmailForwarding extends Call | ||
{ | ||
public $action = "domains/:domain/email"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of SaveNameServers | ||
* | ||
* @author inbs | ||
*/ | ||
class SaveNameServers extends Call | ||
{ | ||
public $action = "domains/:domain/nameservers"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author inbs | ||
*/ | ||
class SaveRegistrarLock extends Call | ||
{ | ||
public $action = "domains/:domain/lock"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetNameServers | ||
* | ||
* @author inbs | ||
*/ | ||
class Sync extends Call | ||
{ | ||
public $action = "domains/:domain/sync"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetNameServers | ||
* | ||
* @author inbs | ||
*/ | ||
class ToggleIdProtect extends Call | ||
{ | ||
public $action = "domains/:domain/protectid"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of TransferDomain | ||
* | ||
* @author Paweł Złamaniec <pawel.zl@modulesgarden.com> | ||
*/ | ||
class TransferDomain extends Call | ||
{ | ||
public $action = "order/domains/transfer"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Calls; | ||
use ModulesGarden\DomainsReseller\Registrar\RadWebHosting\Core\Call; | ||
|
||
/** | ||
* Description of GetNameServers | ||
* | ||
* @author inbs | ||
*/ | ||
class TransferSync extends Call | ||
{ | ||
public $action = "domains/:domain/transfersync"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
Oops, something went wrong.