浏览代码

try to get params in clientarea

andre 2 年之前
父节点
当前提交
0bd0b5c701
共有 1 个文件被更改,包括 3 次插入12 次删除
  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()
     {
-        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);
             return $response;
-//        }
-
+        }
     }
 
 }