소스 검색

new dns helper class

andre 6 달 전
부모
커밋
8c35750650
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 10 1
      kerioEmail.php

+ 10 - 1
kerioEmail.php

@@ -123,7 +123,7 @@ function KerioEmail_ClientArea($params)
 {
 {
 
 
     require_once __DIR__ . DIRECTORY_SEPARATOR . 'core' . DIRECTORY_SEPARATOR . 'App' . DIRECTORY_SEPARATOR . 'AppContext.php';
     require_once __DIR__ . DIRECTORY_SEPARATOR . 'core' . DIRECTORY_SEPARATOR . 'App' . DIRECTORY_SEPARATOR . 'AppContext.php';
-    
+
     $appContext = new AppContext();
     $appContext = new AppContext();
     $productManager = new ProductManager;
     $productManager = new ProductManager;
     $productManager->loadByHostingId($params['serviceid']);
     $productManager->loadByHostingId($params['serviceid']);
@@ -134,6 +134,15 @@ function KerioEmail_ClientArea($params)
     $response['templateVariables']['acc_add'] = $params['configoptions']['acc_add'] ? $params['configoptions']['acc_add'] : 0;
     $response['templateVariables']['acc_add'] = $params['configoptions']['acc_add'] ? $params['configoptions']['acc_add'] : 0;
     $response['templateVariables']['domainBaseSize'] = $domainBaseSize;
     $response['templateVariables']['domainBaseSize'] = $domainBaseSize;
     $response['templateVariables']['domainAddSize'] = $params['configoptions']['domainAddSize'] ? $params['configoptions']['domainAddSize'] : 0;
     $response['templateVariables']['domainAddSize'] = $params['configoptions']['domainAddSize'] ? $params['configoptions']['domainAddSize'] : 0;
+    
+	logModuleCall(
+		'kerioEmail',
+		__FUNCTION__,
+		$params,
+		'Debug',
+		$response['templateVariables']
+	);
+
     return $response;
     return $response;
 }
 }