'; return $Output; } function OnLoad(array $Item): ?string { return $_POST[$Item['Name']]; } function Validate(array $Item): bool { if ($Item['Null'] and ($Item['Value'] == '')) return true; return filter_var($Item['Value'], FILTER_VALIDATE_IP, array('flags' => FILTER_FLAG_IPV4)); } function GetValidationFormat(): string { return 'x.x.x.x kde x je hodnota 0..255'; } }