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