summaryrefslogtreecommitdiffstats
path: root/Core/web_manageserver.lua
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2013-07-27 17:22:27 +0200
committerAlexander Harkness <bearbin@gmail.com>2013-07-27 17:22:27 +0200
commit66e837ecbc08ece3150a364976db87f56813d30b (patch)
tree1593ac9b849f3416aafa70c440694200c62e6b2c /Core/web_manageserver.lua
parentAdded the new core as a subtree. (diff)
downloadcuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.gz
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.bz2
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.lz
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.xz
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.tar.zst
cuberite-66e837ecbc08ece3150a364976db87f56813d30b.zip
Diffstat (limited to '')
-rw-r--r--Core/web_manageserver.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/Core/web_manageserver.lua b/Core/web_manageserver.lua
deleted file mode 100644
index a2936c1a8..000000000
--- a/Core/web_manageserver.lua
+++ /dev/null
@@ -1,35 +0,0 @@
-function HandleRequest_ManageServer( Request )
- local Content = ""
- if (Request.PostParams["RestartServer"] ~= nil) then
- cRoot:Get():QueueExecuteConsoleCommand("restart");
- elseif (Request.PostParams["ReloadServer"] ~= nil) then
- cRoot:Get():GetPluginManager():ReloadPlugins();
- elseif (Request.PostParams["StopServer"] ~= nil) then
- cRoot:Get():QueueExecuteConsoleCommand("stop");
- elseif (Request.PostParams["WorldSaveAllChunks"] ~= nil) then
- cRoot:Get():GetWorld(Request.PostParams["WorldSaveAllChunks"]):SaveAllChunks();
- end
- Content = Content .. [[
- <form method="POST">
- <table>
- <th colspan="2">Manage Server</th>
- <tr><td><input type="submit" value="Restart Server" name="RestartServer"> restart the server</td></tr> <br />
- <tr><td><input type="submit" value="Reload Server" name="ReloadServer"> reload the server</td></tr> <br />
- <tr><td><input type="submit" value="Stop Server" name="StopServer"> stop the server</td></tr> <br />
- </th>
- </table>
- <table>
- <th colspan="2">Manage Worlds</th>
- ]]
- local LoopWorlds = function( World )
- Content = Content .. [[
- <tr><td><input type="submit" value="]] .. World:GetName() .. [[" name="WorldSaveAllChunks"> Save all the chunks of world ]] .. World:GetName() .. [[</td></tr> <br />
-
- ]]
- end
- cRoot:Get():ForEachWorld( LoopWorlds )
- Content = Content .. "</th></table>"
-
- return Content
-end
-