|
@@ -222,20 +222,21 @@ if (!function_exists('\ThurData\Servers\KerioEmail\Core\Helper\di'))
|
|
|
if ($class != null && $method == null)
|
|
if ($class != null && $method == null)
|
|
|
{
|
|
{
|
|
|
$return = DependencyInjection::{$methodName}($class);
|
|
$return = DependencyInjection::{$methodName}($class);
|
|
|
|
|
+
|
|
|
|
|
+ logModuleCall(
|
|
|
|
|
+ 'kerioEmail',
|
|
|
|
|
+ __FUNCTION__,
|
|
|
|
|
+ $return,
|
|
|
|
|
+ 'Debug Home',
|
|
|
|
|
+ $class
|
|
|
|
|
+ );
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
elseif ($class != null && $method != null)
|
|
elseif ($class != null && $method != null)
|
|
|
{
|
|
{
|
|
|
$return = DependencyInjection::{$methodName}($class, $method);
|
|
$return = DependencyInjection::{$methodName}($class, $method);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- logModuleCall(
|
|
|
|
|
- 'kerioEmail',
|
|
|
|
|
- __FUNCTION__,
|
|
|
|
|
- $return,
|
|
|
|
|
- 'Debug Home',
|
|
|
|
|
- $class
|
|
|
|
|
- );
|
|
|
|
|
-
|
|
|
|
|
return $return;
|
|
return $return;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|