mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Special formatting for date custom fields
This commit is contained in:
parent
951f2b1a08
commit
e9d5ae4216
@ -303,10 +303,22 @@ class importexport_import_csv implements importexport_iface_import_record { //,
|
||||
}
|
||||
}
|
||||
foreach((array)$fields['date-time'] as $name) {
|
||||
if ($record[$name] && !is_numeric($record[$name])) $record[$name] = egw_time::user2server($record[$name],'ts');
|
||||
if ($record[$name] && !is_numeric($record[$name])) {
|
||||
$record[$name] = egw_time::user2server($record[$name],'ts');
|
||||
if(in_array($name, self::$cf_parse_cache[$appname][0]['date-time'])) {
|
||||
// Custom fields stored in a particular format (from customfields_widget)
|
||||
$record[$name] = date('Y-m-d H:i:s', $record[$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach((array)$fields['date'] as $name) {
|
||||
if ($record[$name] && !is_numeric($record[$name])) $record[$name] = egw_time::user2server($record[$name],'ts');
|
||||
if ($record[$name] && !is_numeric($record[$name])) {
|
||||
$record[$name] = egw_time::user2server($record[$name],'ts');
|
||||
if(in_array($name, self::$cf_parse_cache[$appname][0]['date'])) {
|
||||
// Custom fields stored in a particular format (from customfields_widget)
|
||||
$record[$name] = date('Y-m-d', $record[$name]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Some custom methods for conversion
|
||||
|
Loading…
Reference in New Issue
Block a user