RemoteAdmin:admin delete region
From OpenSimulator
(Difference between revisions)
(→Returned Parameters) |
JeffKelley (Talk | contribs) m (→PHP: Fixed broken Google Code link, replacing with internal page) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 53: | Line 53: | ||
When an error occures the following error value are returned | When an error occures the following error value are returned | ||
− | *region \"{REGION NAME}\" does not exist | + | * region \"{REGION NAME}\" does not exist |
== Notes == | == Notes == | ||
− | *If you just want to shutdown a region without removing the region from the database, use admin_close_region | + | * If you just want to shutdown a region without removing the region from the database, use admin_close_region |
== Example == | == Example == | ||
=== PHP === | === PHP === | ||
+ | This example needs the RemoteAdmin PHP Class file available [[RemoteAdmin:RemoteAdmin_Class|here]]. | ||
+ | |||
<source lang="php"> | <source lang="php"> | ||
<?php | <?php | ||
Line 77: | Line 79: | ||
</source> | </source> | ||
− | [[RemoteAdmin]] | + | |
− | [[ | + | |
+ | [[Category:RemoteAdmin]] | ||
+ | [[Category:RemoteAdmin Commands]] |
Latest revision as of 11:38, 16 March 2021
admin_delete_region remotely allows to delete regions. All region data in the database will be removed. The region will be shutdown and removed from the map.
Contents |
[edit] Enabling admin_delete_region
If not all functions are enabled, use admin_delete_region to enable the function in the [RemoteAdmin] section
enabled_methods = admin_delete_region,...
[edit] Parameters
[edit] Required Parameters
These parameters are required
parameter | Description | Values |
---|---|---|
region_name | Name of the new region |
[edit] Optional Parameters
There are no optional parameters for this function
[edit] Returned Parameters
[edit] Returned Parameters
These parameters are returned by Remote Admin
parameter | Description | Values |
---|---|---|
success | true when successfull | true, false |
error | error message when not successfull | |
region_id | uuid of the region |
[edit] Error messages
When an error occures the following error value are returned
- region \"{REGION NAME}\" does not exist
[edit] Notes
- If you just want to shutdown a region without removing the region from the database, use admin_close_region
[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 identical to the Python example above $myRemoteAdmin = new RemoteAdmin('127.0.0.1', 9000, 'secret'); // Invoke admin_create_user (multiple parameters) $parameters = array('region_name' => 'My Plaza'); $myRemoteAdmin->SendCommand('admin_delete_region', $parameters); ?>