This commit is contained in:
Jürgen Mummert
2025-12-27 21:41:26 +01:00
parent be9b679922
commit c0c83f2e66
2 changed files with 40 additions and 14 deletions
+8
View File
@@ -33,4 +33,12 @@ $GLOBALS['TL_DCA']['tl_search']['fields']['startDate'] = [
'inputType' => 'text',
'eval' => ['tl_class' => 'w50', 'rgxp' => 'digit'],
'sql' => "bigint(20) NOT NULL default '0'",
];
$GLOBALS['TL_DCA']['tl_search']['fields']['endDate'] = [
'label' => ['Enddatum', 'Enddatum für die Suchergebnisse (Unix-Timestamp)'],
'exclude' => true,
'inputType' => 'text',
'eval' => ['tl_class' => 'w50', 'rgxp' => 'digit'],
'sql' => "bigint(20) NOT NULL default '0'",
];