VBScript → Lua
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()" PBXScript.OutputTrace "PBXScript.PreviousScripts.Count = " & PBXScript.PreviousScripts.Count Dim bReturn bReturn = (PBXScript.PreviousScripts.Count <> 0) IsCallTransferred = bReturn PBXScript.OutputTrace "bReturn = " & bReturn PBXScript.OutputTrace "<------- IsCallTransferred()" End Function
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 initially posted into 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