12 lines
520 B
PHP
12 lines
520 B
PHP
<?php
|
|
class realm {
|
|
public static function status(){
|
|
$res = shell_exec('/home/mojotrolls/mojo_zero/realm status 2>&1');
|
|
($res == 1) ? new WOW_STATS_REALM_ONLINE() : new WOW_STATS_REALM_OFFLINE();
|
|
return ($res == 1) ? '<status>on</status>' : '<status>off</status>';}
|
|
|
|
public static function start(){
|
|
return shell_exec('/home/mojotrolls/mojo_zero/realm start 2>&1');}
|
|
public static function stop(){
|
|
return shell_exec('/home/mojotrolls/mojo_zero/realm stop 2>&1');}
|
|
} |