diff options
-rw-r--r-- | it.class | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -368,7 +368,7 @@ static function _exit($p) */ static function is_live() { - return (preg_match("/^live/", $GLOBALS['ULTRASERVERTYPE']) || !$GLOBALS['ULTRASERVERTYPE'] || EDC('aslive')) && !EDC('asdevel'); + return it::servertype('live'); } @@ -378,7 +378,15 @@ static function is_live() */ static function is_devel() { - return (preg_match("/^devel/", $GLOBALS['ULTRASERVERTYPE']) || EDC('asdevel')) && !EDC('aslive'); + return it::servertype('devel'); +} + +/** + * Check if running on given server type(s) + */ +static function servertype($pattern) +{ + return it::match($pattern, $GLOBALS['ULTRASERVERTYPE'] ?: 'live'); } |