Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Group addUsers: Difference between revisions

From Catglobe Wiki
Created page with "{{Function_Template|Name=Group_addUsers|ReturnType=Empty |Parameters= |Name=<nowiki>Group resource id</nowiki>|ConstantType=Number|IsInteger=1|IsPositive=1, |Name=<nowiki>List..."
 
No edit summary
 
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Function_Template|Name=Group_addUsers|ReturnType=Empty |Parameters= |Name=<nowiki>Group resource id</nowiki>|ConstantType=Number|IsInteger=1|IsPositive=1, |Name=<nowiki>List of user resource id</nowiki>|ConstantType=Array }}
{{HelpFiles}}
 
==== Group_addUsers ====
 
Add users to a group
 
'''Syntax'''
 
Group_addUsers(''groupResourceId'', ''usersResourceId'')
 
'''Arguments'''
 
*''groupResourecId'': is a ''number ''expression. It is the group's resource id
*''usersResourceId'': is a ''array ''which contains User resource Ids
 
'''Return value'''
 
empty
 
=== Examples ===
 
<source lang="javascript">
number gRsId = 15544389;
array uRsId = {15498958,15507494,15517129};
Group_addUsers(gRsId,uRsId);
</source>
[[Category:Group_Functions]]

Latest revision as of 08:20, 12 January 2017


Group_addUsers

Add users to a group

Syntax

Group_addUsers(groupResourceId, usersResourceId)

Arguments

  • groupResourecId: is a number expression. It is the group's resource id
  • usersResourceId: is a array which contains User resource Ids

Return value

empty

Examples

number gRsId = 15544389;
array uRsId = {15498958,15507494,15517129};
Group_addUsers(gRsId,uRsId);