RemoteAdmin:admin acl add

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "'''admin_acl_add''' remotely allows to add a list of users to the access control list === Enabling admin_acl_add === If not all functions are enabled, use admin_acl_add to ena...")
 
m
(4 intermediate revisions by 2 users not shown)
Line 56: Line 56:
 
== Example ==
 
== Example ==
 
=== PHP ===
 
=== PHP ===
 +
This example needs the RemoteAdmin PHP Class file available [http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass here].
 +
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
Line 71: Line 73:
 
</source>
 
</source>
  
[[Category:Development]]
+
[[Category:RemoteAdmin]]
 +
[[Category:RemoteAdmin Commands]]

Revision as of 16:17, 24 October 2015

admin_acl_add remotely allows to add a list of users to the access control list


Contents

Enabling admin_acl_add

If not all functions are enabled, use admin_acl_add to enable the function in the [RemoteAdmin] section

enabled_methods = admin_acl_add,...


Parameters

Required Parameters

These parameters are required

parameter Description Values
region_name Region name to add user, optionaly use region_uuid
users list of users names eg. "Jon Doe"


Optional Parameters

No optional parameters


Returned Parameters

Returned Parameters

These parameters are returned by Remote Admin

parameter Description Values
added list of user uuids added


Error messages

Notes

Example

PHP

This example needs the RemoteAdmin PHP Class file available here.

<?php
 
// Including the RemoteAdmin PHP class.
include('RemoteAdmin.php');
 
// Instantiate the class with parameters identical to the Python example above
$myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret');
 
// Invoke admin_acl_add (multiple parameters)
$parameters = array('region_name' => 'My Plaza', 'users' => 'John Doe');
$myRemoteAdmin->SendCommand('admin_acl_add', $parameters);
?>
Personal tools
General
About This Wiki