RemoteAdmin:admin dialog
From OpenSimulator
(Difference between revisions)
(→PHP) |
|||
| Line 1: | Line 1: | ||
| + | '''admin_dialog''' remotely allows to send admin_dialog. | ||
| + | |||
| + | === Enabling admin_get_opensim_version=== | ||
| + | If not all functions are enabled, use admin_dialog to enable the function in the [RemoteAdmin] section | ||
| + | <source lang="csharp"> | ||
| + | enabled_methods = admin_dialog, ... | ||
| + | </source> | ||
| + | |||
| + | == Parameters == | ||
| + | === Required Parameters === | ||
| + | No parameters are required | ||
| + | {| cellspacing="0" cellpadding="4" border="1" | ||
| + | |- | ||
| + | ! parameter | ||
| + | ! Description | ||
| + | ! Values | ||
| + | |} | ||
| + | |||
| + | === Optional Parameters === | ||
| + | No optional parameter | ||
| + | |||
| + | {| cellspacing="0" cellpadding="4" border="1" | ||
| + | |- | ||
| + | ! parameter | ||
| + | ! Description | ||
| + | ! Values | ||
| + | |} | ||
| + | |||
| + | == Returned Parameters == | ||
| + | === Returned Parameters === | ||
| + | These parameters are returned by Remote Admin | ||
| + | |||
| + | {| cellspacing="0" cellpadding="4" border="1" | ||
| + | |- | ||
| + | ! parameter | ||
| + | ! Description | ||
| + | ! Values | ||
| + | |- | ||
| + | | ''accepted'' | ||
| + | | true when successfull | ||
| + | | true, false | ||
| + | |- | ||
| + | | ''success'' | ||
| + | | true when successfull | ||
| + | | true, false | ||
| + | |} | ||
| + | |||
| + | === Error messages === | ||
| + | ... | ||
| + | |||
| + | == Notes == | ||
| + | ... | ||
| + | |||
| + | == Example == | ||
=== PHP === | === PHP === | ||
This example needs the RemoteAdmin PHP Class file available [http://code.google.com/p/opensimtools/wiki/RemoteAdminPHPClass here]. | 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 12: | Line 67: | ||
?> | ?> | ||
</source> | </source> | ||
| + | |||
[[Category:RemoteAdmin]] | [[Category:RemoteAdmin]] | ||
[[Category:RemoteAdmin Commands]] | [[Category:RemoteAdmin Commands]] | ||
Revision as of 15:52, 4 April 2017
admin_dialog remotely allows to send admin_dialog.
Contents |
Enabling admin_get_opensim_version
If not all functions are enabled, use admin_dialog to enable the function in the [RemoteAdmin] section
enabled_methods = admin_dialog, ...
Parameters
Required Parameters
No parameters are required
| parameter | Description | Values |
|---|
Optional Parameters
No optional parameter
| parameter | Description | Values |
|---|
Returned Parameters
Returned Parameters
These parameters are returned by Remote Admin
| parameter | Description | Values |
|---|---|---|
| accepted | true when successfull | true, false |
| success | true when successfull | true, false |
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 $myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret'); // Invoke admin_dialog (multiple parameters) $parameters = array('message' => '<MESSAGE_HERE>', 'from' => '<UUID_HERE>'); $myRemoteAdmin->SendCommand('admin_dialog', $parameters); ?>