Lua → VBScript
The following function returns true if the current script user has any redirection configured (unconditional, busy or delayed).
Please see the Introduction chapter for some usage instructions.
------------------------------------------------------------------ -- AnyRedirectionConfigured -- -- Returns true if current user has configured any redirection (unconditional, busy or delayed) -- -- Parameter: -- none -- -- Return: -- boolean ------------------------------------------------------------------ function AnyRedirectionConfigured() PBXScript.OutputTrace ("------> AnyRedirectionConfigured ()") local bReturn bReturn = (PBXUser.UnconditionalRedirect() or PBXUser.BusyRedirect() or PBXUser.DelayedRedirect()) PBXScript.OutputTrace ("bReturn = " .. tostring(bReturn)) PBXScript.OutputTrace ("<------ AnyRedirectionConfigured") return bReturn end
This function makes use of the Server Script API functions PBXUser.UnconditionalRedirec(), PBXUser.BusyRedirect() and PBXUser.DelayedRedirect() to figure if any of the script users' redirection is currently enabled and PBXScript.OutputTrace() to write trace information into the SwyxServer trace file.
This function was converted from VBScript into Lua from the initially posted version in this forum topic.

By Tom Wellige
Recommended Comments
There are no comments to display.