dcc202fb249a446ac15c7cf413b9f1b4a3f31b58
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

modules/adddomain/include/terions.php  1) <?php
modules/adddomain/include/terions.php  2) /*
modules/adddomain/include/terions.php  3) This file belongs to the Webinterface of schokokeks.org Hosting
modules/adddomain/include/terions.php  4) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

modules/adddomain/include/httpnet.php  5) Written by schokokeks.org Hosting, namely
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

modules/adddomain/include/terions.php  6)   Bernd Wurst <bernd@schokokeks.org>
modules/adddomain/include/terions.php  7)   Hanno Böck <hanno@schokokeks.org>
modules/adddomain/include/terions.php  8) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

modules/adddomain/include/httpnet.php  9) This code is published under a 0BSD license.
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

modules/adddomain/include/terions.php 10) 
modules/adddomain/include/terions.php 11) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
modules/adddomain/include/terions.php 12) */
modules/adddomain/include/terions.php 13) 
modules/adddomain/include/terions.php 14) require_once('inc/base.php');
Bernd Wurst Umstellung von SOAP-API auf...

Bernd Wurst authored 6 years ago

modules/adddomain/include/httpnet.php 15) require_once('inc/api.php');
Bernd Wurst incomplete stub

Bernd Wurst authored 7 years ago

modules/adddomain/include/httpnet.php 16) 
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

modules/adddomain/include/terions.php 17) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/adddomain/include/httpnet.php 18) function api_domain_available($domainname)
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

modules/adddomain/include/terions.php 19) {
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/adddomain/include/httpnet.php 20)     $args = ["domainNames" => [$domainname]];
Bernd Wurst Umstellung von SOAP-API auf...

Bernd Wurst authored 6 years ago

modules/adddomain/include/httpnet.php 21)     $result = api_request('domainStatus', $args);
modules/adddomain/include/httpnet.php 22)     $resp = $result["responses"][0];
modules/adddomain/include/httpnet.php 23)     return ($resp["status"] == "available");