Jump to content
  • AnyRedirectionConfigured

    AnyRedirectionConfigured

    VBScript   → Lua

     

    The following function returns true if the current script user has any redirection configured (unconditional, busy or delayed).

    Please see the Introduction chapter for some usage instructions.

     

    '----------------------------------------------------------------
    ' AnyRedirectionConfigured
    '
    ' Returns true if current user has configured any redirection (unconditional, busy or delayed)
    '
    ' Parameter:
    '   none
    '
    ' Return:
    '   boolean
    '----------------------------------------------------------------
    Function AnyRedirectionConfigured()
        PBXScript.OutputTrace "------> AnyRedirectionConfigured ()"
        Dim bReturn
    
        bReturn = (PBXUser.UnconditionalRedirect or PBXUser.BusyRedirect or PBXUser.DelayedRedirect)
    
        AnyRedirectionConfigured = bReturn
    
        PBXScript.OutputTrace "bReturn = " & bReturn
        PBXScript.OutputTrace "<------ AnyRedirectionConfigured"
    End Function

     

     

    This function makes use of the Server Script API functions PBXUser.UnconditionalRedirect, PBXUser.BusyRedirect and PBXUser.DelayedRedirect to figure if any of the script users' redirection is currently enabled and PBXScript.OutputTrace to write trace information into the SwyxServer trace file.

     

    This function was originally 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.