$getAccess

Returns a list of the current users access flags on the current branch.
Syntax
    $getAccesss{}
DocumentationReturns a list of lines of the current users access flags on the current branch:

    Returns:
      a '$\n' separeted list of the current users access flags on the current branch.
Examples
Example 1:
    switchUser{Jack1}{secret}
      {
      $getAccess{}
      }

    Result 1:
    lists all access rights of user "Jack1":
    for example: ACCESS_CREATE ACCESS_DELETE
    ACCESS_READ ACCESS_UPDATE
    ACCESS_VISIBLE
Example 2:
    $switchUser{admin}{admin}
      {
      $grantUserAccess {Jack1}{ACCESS_DELETE}{ACCESS_CREATE}
      }
    $switchUser{Jack1}{secret}
      {
      $getAccess{}
      }

    Result 2:
    switches the current user to "admin" with the
    password "admin", grants access rights to user
    "Jack1", returns all access rights for the user "Jack1"
    with the password "secret":
    ACCESS_DELETE ACCESS_CREATE
GroupSecurity
Minimum required transaction-mode:READ
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters0
Maximum parameters 0