Explorar el Código

try to get params in clientarea

andre hace 2 años
padre
commit
0bd0b5c701
Se han modificado 1 ficheros con 3 adiciones y 12 borrados
  1. 3 12
      app/Http/Client/Home.php

+ 3 - 12
app/Http/Client/Home.php

@@ -24,20 +24,11 @@ class Home extends AbstractClientController
 
 
     public function index()
     public function index()
     {
     {
-        logModuleCall(
-            'kerioEmail',
-            __FUNCTION__,
-            $params,
-            'Debug params',
-            $this->getWhmcsParamByKey('status')
-        ); 
-
-//        if ($this->getWhmcsParamByKey('status') === 'Active')
-//        {
+        if ($this->getWhmcsParamByKey('status') === 'Active')
+        {
             $response = Helper\view()->addElement(Dashboard::class);
             $response = Helper\view()->addElement(Dashboard::class);
             return $response;
             return $response;
-//        }
-
+        }
     }
     }
 
 
 }
 }