aclGroupGetName
Client-side
Server-side
Shared
This function is used to get the name of the given ACL group.
OOP Syntax Help! I don't understand this!
- Method: aclgroup:getName(...)
- Variable: .name
Syntax
string|false aclGroupGetName ( aclgroup theGroup )
Required Arguments
- theGroup: The ACL group to get the name of.
Returns
- string|false: acl group name
Returns the name of the given ACL group as a string if successful, otherwise false or nil if the aclGroup is invalid or it fails for some other reason.
Code Examples
server
This example outputs to the console that Admin's are ready to watch :)
.
addEventHandler("onResourceStart", resourceRoot, function() outputConsole(aclGroupGetName(aclGetGroup("Admin")).."'s are ready to watch :)",root)end)
See Also
ACL Functions
- aclCreate
- aclCreateGroup
- aclDestroy
- aclDestroyGroup
- aclGet
- aclGetName
- aclGetRight
- aclGetGroup
- aclGroupAddACL
- aclGroupAddObject
- aclGroupGetName
- aclGroupList
- aclGroupListObjects
- aclGroupListACL
- aclGroupRemoveACL
- aclGroupRemoveObject
- aclList
- aclListRights
- aclObjectGetGroups
- aclReload
- aclRemoveRight
- aclSave
- aclSetRight
- hasObjectPermissionTo
- isObjectInACLGroup