-
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.
Compatibility with PHP 8.1+
- Loading branch information
Showing
29 changed files
with
1,410 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/CheckAvailability.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/DeleteNameServer.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/GetContactDetails.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/GetDns.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/GetEmailForwarding.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/GetEppCode.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/GetNameServers.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/GetRegistrarLock.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/ModifyNameServer.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/RegisterDomain.php
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 <[email protected]> | ||
*/ | ||
class RegisterDomain extends Call | ||
{ | ||
public $action = "order/domains/register"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/RegisterNameServer.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/ReleaseDomain.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/RenewDomain.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/RequestDelete.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/SaveContactDetails.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/SaveDns.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/SaveEmailForwarding.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/SaveNameServers.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/SaveRegistrarLock.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/Sync.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/ToggleIdProtect.php
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; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/TransferDomain.php
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 <[email protected]> | ||
*/ | ||
class TransferDomain extends Call | ||
{ | ||
public $action = "order/domains/transfer"; | ||
|
||
public $type = parent::TYPE_POST; | ||
} |
15 changes: 15 additions & 0 deletions
15
RadWebHosting/modules/registrars/RadWebHosting/Calls/TransferSync.php
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.