$grantGroupPermissions

Function $grantGroupPermissions grants the specified permission for the named group.
Syntax
    $grantGroupPermissions{group_name}{permission_value_1}{permission_value_2} ... {permission_value_n}
DocumentationFunction $grantGroupPermissions grants the specified permission for the named group.

    Parameters:
      group_name, the name of the group to grant the parmissions for.
      permision_value_1 through permission_value_n, the permissions to be granted for the named group.
      Valid permision values are:
        - PERMISSION_ADMINISTRATE_GROUPS
        - PERMISSION_ADMINISTRATE_USERS
        - PERMISSION_CREATE_GROUP
        - PERMISSION_CREATE_USER
        - PERMISSION_DELETE_GROUP
        - PERMISSION_DELETE_USER
        - PERMISSION_MODIFY_GROUP
        - PERMISSION_MODIFY_USER
        - PERMISSION_FL_BASIC
        - PERMISSION_FL_ADVANCED
        - PERMISSION_FL_ADMINISTRATIVE
        - PERMISSION_FL_ADMINISTRATOR
        - PERMISSION_FL_EXPERT
        - PERMISSION_TEMPLATE_CREATE
        - PERMISSION_TEMPLATE_DELETE
        - PERMISSION_ALL
    Throws:
      java.lang.IllegalArgumentException if the named group does not exist or permission_value is not one of the values listed above.
    Note:
      the permissions are granted for this group on the current branch and all children of this branch only.
      the permissions are granted for all users that are members of the named group.
Examples
Grant permissions for the group 'quests_group':

    $grantGroupPermissions{guests_group}{PERMISSION_ADMINISTRATE_GROUPS}{PERMISSION_ADMINISTRATE_USERS}
GroupSecurity
Minimum required transaction-mode:UPDATE=SECURITY
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATIVE
Minimum parameters2
Maximum parameters <unlimited>