DatabaseCompareOperators = array('Rovno' => '=', 'Nerovno' => '!='); } function OnView(array $Item): ?string { if ($Item['Value'] == 1) $Checked = ' checked="1"'; else $Checked = ''; return ''; } function OnEdit(array $Item): string { if ($Item['Value'] == 1) $Checked = ' checked="1"'; else $Checked = ''; return ''; } function OnLoad(array $Item): ?string { if (array_key_exists($Item['Name'], $_POST)) return 1; else return 0; } function OnCanLoad(array $Item): bool { return true; } }