12 lines
516 B
PHP

<?php
class world {
public static function status(){
$res = shell_exec('/home/mojotrolls/mojo_zero/world status 2>&1');
($res == 1) ? new WOW_STATS_WORLD_ONLINE() : new WOW_STATS_WORLD_OFFLINE();
return ($res == 1) ? '<status>on</status>' : '<status>off</status>';}
public static function start(){
return shell_exec('/home/mojotrolls/mojo_zero/world start 2>&1');}
public static function stop(){
return shell_exec('/home/mojotrolls/mojo_zero/world stop 2>&1');}
}