AR/aclGroupAddACL: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} <!-- Describe in plain english what this function does. Don't go into details, just give an overview --> تقوم هذه الوظيفة بإض...")
 
mNo edit summary
 
Line 35: Line 35:
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
{{AR/ACL_functions}}
{{AR/ACL_functions}}
[[ar:aclGroupAddACL]]
[[en:AclGroupAddACL]]
[[zh-cn:aclGroupAddACL]]

Latest revision as of 18:28, 21 February 2021

تقوم هذه الوظيفة بإضافة قروب للأسل , و يجب أن يكون هذا القروب موجود مسبقاً .

تركيب الوظيفة :

bool aclGroupAddACL ( aclgroup theGroup, acl theACL )

العناصر المطلوبة :

  • theGroup: القروب المطلوب إضافة إلى الأسل
  • theACL: الأسل الذي تود إضافة القروب إليه

المعطيات :

إذا كان هناك خطأ في العناصر المطلوبة false \ nil إذا تمتإضافة القروب للأسل المحدد , و إرجاع قيمة true يقوم بإرجاع قيمة

أمثلة :

This example adds a command addAclGroup with which you can easily add new access control lists to specified acl Groups.

function addAclGroup ( thePlayer, commandName, aclName )
if(aclName) then
    acl = aclCreate ( aclName )
else
    acl = aclCreate("myName")
end
aclGroup = aclGetGroup("Admin")
aclGroupAddACL(aclGroup,acl) -- now all Admins have the rights of acl, too
aclSave () 
addCommandHandler ( "addAclGroup", addAclGroup)

إعادة ترجمة و إضافة من قبل : ^iiEcoo'x_)

إنظر أيضاً :