RemoteAdmin:admin dialog
From OpenSimulator
(Difference between revisions)
JeffKelley (Talk | contribs) m (→PHP: Fixed broken Google Code link, replacing with internal page) |
|||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
'''admin_dialog''' remotely allows to send admin_dialog. | '''admin_dialog''' remotely allows to send admin_dialog. | ||
− | === Enabling | + | === Enabling admin_dialog=== |
If not all functions are enabled, use admin_dialog to enable the function in the [RemoteAdmin] section | If not all functions are enabled, use admin_dialog to enable the function in the [RemoteAdmin] section | ||
<source lang="csharp"> | <source lang="csharp"> | ||
− | enabled_methods = | + | enabled_methods = admin_dialog, ... |
</source> | </source> | ||
Line 54: | Line 54: | ||
== Example == | == Example == | ||
=== PHP === | === PHP === | ||
− | This example needs the RemoteAdmin PHP Class file available [ | + | This example needs the RemoteAdmin PHP Class file available [[RemoteAdmin:RemoteAdmin_Class|here]]. |
<source lang="php"> | <source lang="php"> |
Latest revision as of 11:35, 16 March 2021
admin_dialog remotely allows to send admin_dialog.
Contents |
[edit] Enabling admin_dialog
If not all functions are enabled, use admin_dialog to enable the function in the [RemoteAdmin] section
enabled_methods = admin_dialog, ...
[edit] Parameters
[edit] Required Parameters
No parameters are required
parameter | Description | Values |
---|
[edit] Optional Parameters
No optional parameter
parameter | Description | Values |
---|
[edit] Returned Parameters
[edit] Returned Parameters
These parameters are returned by Remote Admin
parameter | Description | Values |
---|---|---|
accepted | true when successfull | true, false |
success | true when successfull | true, false |
[edit] Error messages
...
[edit] Notes
...
[edit] Example
[edit] 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); ?>