Lua → VBScript
The following function returns the user name from a given extension.
Please see the Introduction chapter for some usage instructions.
------------------------------------------------------------------ -- GetUserNameFromExtension -- -- Returns the user name for the given extension. -- -- Parameter: -- sExtension extension -- -- Return: -- string user name ------------------------------------------------------------------ function GetUserNameFromExtension( sExtension ) PBXScript.OutputTrace ("------> GetUserNameFromExtension ( " .. sExtension .. " )") local sReturn = "" local oUsers = nil oUsers = PBXScript.GetUserByAddress(sExtension) if (oUsers ~= nil) then for i = 1, #oUsers do PBXScript.OutputTrace ("Found user '" .. oUsers[i]:Name() .. "'") sReturn = oUsers[i]:Name() end end PBXScript.OutputTrace ("sReturn = " .. sReturn) PBXScript.OutputTrace ("<------ GetUserNameFromExtension") return sReturn end
This function makes use of the Server Script API functions PBXConfig.GetUserByAddress() to get the user name from the given number and PBXScript.OutputTrace() to write trace information into the SwyxServer trace file.
Examples for the usage of this function can be found in the functions IsRedirectedFromByNumber() and IsRedirectionLoopConfigured().
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