Jump to content
  • GetUserNameFromExtension

    GetUserNameFromExtension

    VBScript   → Lua

     

    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 & " )"
    
        Dim sReturn
        sReturn = ""
    
        Dim oUSers
        Set oUsers = g_PBXConfig.GetUserByAddress(sExtension)
    
        Dim oUser
        For Each oUser In oUsers
            PBXScript.OutputTrace "Name: " & oUser.Name
            sReturn = oUser.Name
        Next
    
        GetUserNameFromExtension = sReturn
    
        PBXScript.OutputTrace "sReturn = " & sReturn
        PBXScript.OutputTrace "<------ GetUserNameFromExtension"
    End Function

     

    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 initially posted into this forum topic.

     

     


    Tom Wellige
     Share


     Share




    User Feedback

    Recommended Comments

    There are no comments to display.



    Guest
    Add a comment...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.