AclGroupAddObject: Difference between revisions
Jump to navigation
Jump to search
m (removed article from the "needs example" category) |
mNo edit summary |
||
Line 32: | Line 32: | ||
function giveAdminRights (playerSource, commandName, accountName) --add the function giveAdminRights and specify its arguments | function giveAdminRights (playerSource, commandName, accountName) --add the function giveAdminRights and specify its arguments | ||
if accountName then --if there was an accountName entered then | if accountName then --if there was an accountName entered then | ||
aclGroupAddObject (aclGetGroup("Admin"), "user."..accountName | aclGroupAddObject (aclGetGroup("Admin"), "user."..accountName) --add an ACL object using the form "user.[accountName]" to the ACL group "Admin" | ||
outputChatBox ("Account '"..accountName.."' succesfully added to the admin group", playerSource) --output a notification to the player who entered the command that the acocunt was successfully added | outputChatBox ("Account '"..accountName.."' succesfully added to the admin group", playerSource) --output a notification to the player who entered the command that the acocunt was successfully added | ||
else --else output an error message and the correct syntax of the command to the player who entered it | else --else output an error message and the correct syntax of the command to the player who entered it |
Revision as of 23:35, 24 August 2009
This function adds an object to the given ACL group. An object can be a player's account, specified as:
user.<accountname>
Or a resource, specified as:
resource.<resourcename>
Objects are specified as strings. The ACL groups work for the user accounts and the resources that are specified in them.
Syntax
bool aclGroupAddObject ( aclgroup theGroup, string theObjectName )
Required Arguments
- theGroup: The group to add the object name string too.
- theGroupName: The object string to add to the given ACL
Returns
Returns true if the object was successfully added to the ACL, false if it already existed in the list.
Example
This example makes every player able to use a command named "giveAccountAdminRights" that will add a specific accountname as an ACL object to the "Admin" group.
function giveAdminRights (playerSource, commandName, accountName) --add the function giveAdminRights and specify its arguments if accountName then --if there was an accountName entered then aclGroupAddObject (aclGetGroup("Admin"), "user."..accountName) --add an ACL object using the form "user.[accountName]" to the ACL group "Admin" outputChatBox ("Account '"..accountName.."' succesfully added to the admin group", playerSource) --output a notification to the player who entered the command that the acocunt was successfully added else --else output an error message and the correct syntax of the command to the player who entered it outputChatBox ("No account name specified.", playerSource) outputChatBox ("Correct syntax: /giveAccountAdminRights [accountName]", playerSource) end end addCommandHandler ("giveAccountAdminRights", giveAdminRights) --add a command "giveAccountAdminRights" and attch the function "giveAdminRights" to it
See Also
- aclCreate
- aclCreateGroup
- aclDestroy
- aclDestroyGroup
- aclGet
- aclGetGroup
- aclGetName
- aclGetRight
- aclGroupAddACL
- aclGroupAddObject
- aclGroupGetName
- aclGroupList
- aclGroupListACL
- aclGroupListObjects
- aclGroupRemoveACL
- aclGroupRemoveObject
- aclList
- aclListRights
- aclReload
- aclRemoveRight
- aclSave
- aclSetRight
- hasObjectPermissionTo
- isObjectInACLGroup