Zitat von
Spooky
Einfach als UNIX_TIMESTAMP oder als MySQL DATETIME speichern.
Die MySQL DATETIME speichert YYYY-MM-DD.
Ich möchte aber das Format in der Datenbank: DD.MM.YYYY
Zitat von
Spooky
Wenn du für diese Tabelle Einträge im Contao Backend erstellst oder editierst, dann ja.
Ich habe eine Auflistung im Backend und ich möchte dort nur eine Checkbox verändern. Der tstamp wird trotzdem gespeichert, obwohl ich nur die Checkbox verändere.
Zitat von
Spooky
Ich verstehe dein Modul noch nicht ganz. Poste mal das DCA bspw.
HTML-Code:
'date' => array
(
'label' => &$GLOBALS['TL_LANG']['tl_testtable']['date'],
'inputType' => 'text',
'exclude' => true,
'eval' => array(
'disabled' => true
),
'sql' => "varchar(10) NOT NULL default ''"
),
Beispiel vom Date, welches ich nur angezeigt haben möchte. Das soll standardmäßig ja nicht verändert werden...