Jump to content
  • IsUserLoggedOff

    IsUserLoggedOff

    VBScript   → Lua

     

    This function returns True of the given user is logged off from the server.

    Please see the Introduction chapter for some usage instructions.

     

    '----------------------------------------------------------------
    ' IsUserLoggedOff
    '
    ' Checks if given user is logged off
    '
    ' Parameter:
    '   sNumber         user name or extension
    '
    ' Return:
    '	boolean
    '----------------------------------------------------------------
    Function IsUserLoggedOff( sNumber )
        PBXScript.OutputTrace "-------------> IsUserLoggedOff ( sNumber = " & sNumber & " )"
    
        Dim bReturn
        bReturn = False
    
        Dim Users
        Set Users = g_PBXConfig.GetUserByAddress(sNumber)
    
        Dim User
        For Each User In Users
    
            PBXScript.OutputTrace "Found user " & User.Name & " with current state " & User.State
    
            bReturn = (User.State = 1)
    
        Next
    
        IsUserLoggedOff = bReturn
    
        PBXScript.OutputTrace "bReturn = " &bReturn
        PBXScript.OutputTrace "<------------- IsUserLoggedOff"
    End Function

     

    Please note that the status signalling between all involved users (incl. the one the current call routing runs for) must be configured (just as in SwyxIt!).

     

    This function makes use of the Server Script API functions PBXConfig.GetUserByAddress to get the current status of the given user and PBXScript.OutputTrace to write trace information into the SwyxServer trace file.

     

    This function was initially posted into this forum topic.
     

     


    Tom Wellige
     Share


     Share




    User Feedback

    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 account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
×
×
  • 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.