$args[1]) throw new Exception("Value ".$val.", not in range(" . $args[0] . "," . $args[1] . ")"); } return $val; } function flt_time($val, $name, $struct, $args) { $str = ""; if(is_string($val)) { if(strlen($val) === 0) throw new Exception("Bad value, string empty, crc28 can't be generated"); $reg = "/^([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})$/"; if(!preg_match($reg, $val, $matches)) throw new Exception("Bad value, pattern 00:00:00"); $h = intval($matches[1]); $m = intval($matches[2]); $s = intval($matches[3]); return $h * 3600 + $m * 60 + $s; } return 0; } function flt_class($val, $name, $struct, $args) { global $GAME_ROOT; if(is_string($val)) { $conf_path = $val; if(strpos($conf_path, '@') === 0) $conf_path = substr($conf_path, 1) . '.conf.js'; $conf_path = \taskman\config_real_path($conf_path); $cce = \taskman\config_fetch_by_path($conf_path); $conf_class = $cce->class; if($conf_class != $args[0] && !is_subclass_of($conf_class, $args[0])) throw new Exception($val.". Config class is \"".$conf_class."\". Must be \"".$args[0]."\" or it's child"); } return $val; }