Lua → VBScript
This function returns true if the call was transferred by another user and is not a direct call.
Please see the Introduction chapter for some usage instructions.
------------------------------------------------------------------ -- IsCallTransferred -- -- Checks if the current call was transferred to the current user, -- i.e. was in some other user's call routing before. -- -- Parameter: -- -- Return: -- boolean true - call was transferred -- false - call is a direct call ------------------------------------------------------------------ function IsCallTransferred () PBXScript.OutputTrace ("-------> IsCallTransferred()") local bReturn = false local tScripts = nil tScripts = PBXScript.PreviousScripts() if (tScripts ~= nil) then PBXScript.OutputTrace ("PBXScript.PreviousScripts() item count = " .. tostring(#tScripts)) bReturn = (#tScripts > 0) end PBXScript.OutputTrace ("bReturn = " .. tostring(bReturn)) PBXScript.OutputTrace ("<------- IsCallTransferred()") return bReturn end
This function makes use of the Server script API function PBXScript.PreviousScripts() to check if the call has been in some other call routing scripts before (if so, it must have been transferred) 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.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now