'=', 'Nerovno' => '!=', 'Menší' => '<', 'Větší' => '>'); function OnView($Item) { $Output = $Item['Value']; return($Output); } function OnEdit($Item) { $Output = ''; return($Output); } function OnLoad($Item) { return($_POST[$Item['Name']]); } function Validate($Item) { if($Item['Null'] and ($Item['Value'] == '')) return(true); return(preg_match('/^\-*[0-9\.]+$/', $Item['Value'])); } function GetValidationFormat() { return('číselná hodnota'); } }