'=', 'Nerovno' => '!=', 'Menší' => '<', 'Větší' => '>'); function OnView($Item) { global $MonthNames; if($Item['Value'] == null) return(''); if((strtolower($Item['Value']) == 'now') or (strtolower($Item['Value']) == '')) $Item['Value'] = time(); $Parts = getdate($Item['Value']); $Output = $Parts['mday'].'.'.$Parts['mon'].'.'.$Parts['year']; return($Output); } function OnEdit($Item) { global $MonthNames; if(($Item['Value'] !== null) and ((strtolower($Item['Value']) == 'now') or (strtolower($Item['Value']) == ''))) $Item['Value'] = time(); $Parts = getdate($Item['Value']); $Output = ''; $Style = ''; if(array_key_exists('Null', $Item) and $Item['Null']) { if($Item['Value'] != null) { $Checked = ' checked="1"'; $Style = 'style="display:inline;"'; } else { $Checked = ''; $Style = 'style="display:none;"'; } $Output .= ''; } // Day $Output .= ''; // Month $Output .= ''; // Year $Output .= ''; return($Output); } function OnLoad($Item) { if(!array_key_exists($Item['Name'].'-null', $_POST) and array_key_exists('Null', $Item) and ($Item['Null'] == true)) return(null); else return(mktime(0, 0, 0, $_POST[$Item['Name'].'-month'], $_POST[$Item['Name'].'-day'], $_POST[$Item['Name'].'-year'])); } function OnLoadDb($Item) { return(MysqlDateToTime($Item['Value'])); } function OnSaveDb($Item) { if($Item['Value'] == null) return(null); else return(date('Y-m-d', $Item['Value'])); } function DatabaseEscape($Value) { return('"'.addslashes($Value).'"'); } }