diff --git a/server/core/FloatingIp.php b/server/core/FloatingIp.php old mode 100644 new mode 100755 index 72ae836..4271a84 --- a/server/core/FloatingIp.php +++ b/server/core/FloatingIp.php @@ -22,7 +22,7 @@ include("CoreInterface.php"); * Management of images * */ -class FloatingIp implements Core{ +class floatingIp implements Core{ /** @var App $app protected, contains the main app object */ protected $app; diff --git a/server/index.php b/server/index.php index d6b0329..ac66c95 100755 --- a/server/index.php +++ b/server/index.php @@ -52,6 +52,13 @@ $computeObject->action($action); $App->show(); break; + + case "floatingip": + include_once("core/FloatingIp.php"); + $computeObject = new floatingIp($App); + $computeObject->action($action); + $App->show(); + break; } }else{