DatabaseCompareOperators = array('Rovno' => '=', 'Nerovno' => '!=', 'Menší' => '<', 'Větší' => '>');
}
function OnView(array $Item): ?string
{
if ($Item['Value'] == 0) return '';
if ((strtolower($Item['Value']) == 'now') or (strtolower($Item['Value']) == '')) $Item['Value'] = time();
$TimeParts = getdate($Item['Value']);
$Output = sprintf('%02d', $TimeParts['hours']).':'.sprintf('%02d', $TimeParts['minutes']).':'.sprintf('%02d', $TimeParts['seconds']);
return $Output;
}
function OnEdit(array $Item): string
{
if (($Item['Value'] == null) or (($Item['Value'] !== null) and ((strtolower($Item['Value']) == 'now') or (strtolower($Item['Value']) == ''))))
{
$Item['Value'] = time();
$IsNull = true;
} else $IsNull = false;
$TimeParts = getdate($Item['Value']);
$Output = '';
$Style = '';
if (array_key_exists('Null', $Item) and $Item['Null'])
{
if ($IsNull)
{
$Checked = ' checked="1"';
$Style = 'style="display:inline;"';
} else
{
$Checked = '';
$Style = 'style="display:none;"';
}
$Output .= '';
}
// Hour
$Output .= '';
// Minute
$Output .= '';
// Second
$Output .= '';
return $Output;
}
function OnLoad(array $Item): ?string
{
if (!array_key_exists($Item['Name'].'-null', $_POST) and array_key_exists('Null', $Item) and ($Item['Null'] == true)) return null;
return mktime($_POST[$Item['Name'].'-hour'], $_POST[$Item['Name'].'-minute'], $_POST[$Item['Name'].'-second']);
}
function OnCanLoad(array $Item): bool
{
return array_key_exists($Item['Name'].'-null', $_POST) or (array_key_exists($Item['Name'].'-hour', $_POST) and
array_key_exists($Item['Name'].'-minute', $_POST) and array_key_exists($Item['Name'].'-second', $_POST)
);
}
function OnLoadDb(array $Item): ?string
{
return MysqlTimeToTime($Item['Value']);
}
function OnSaveDb(array $Item): ?string
{
if ($Item['Value'] == null) return null;
else return date('H:i:s', $Item['Value']);
}
function DatabaseEscape(string $Value): string
{
return '"'.addslashes($Value).'"';
}
}