mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 03:54:29 +01:00
using a compiled list of timestamp column-names instead a regular expression, fixes duration columns like "info_used_time" get transformed too
This commit is contained in:
parent
d6b3362420
commit
8c2599d03a
@ -653,14 +653,11 @@ class etemplate_widget_nextmatch extends etemplate_widget
|
||||
*/
|
||||
private static function run_beforeSendToClient(array $row)
|
||||
{
|
||||
$is_timestamp = array();
|
||||
$timestamps = self::get_timestamps();
|
||||
|
||||
foreach($row as $name => &$value)
|
||||
{
|
||||
if (!isset($is_timestamp[$name]))
|
||||
{
|
||||
$is_timestamp[$name] = $name[0] != '#' && preg_match('/(start|end|time|modified|created|date|payed|confirmed|closed|deleted|since|timestamp|expires|last_mod|lastmod|begin|completed|recurrence)$/', $name);
|
||||
}
|
||||
if ($is_timestamp[$name] && $value &&
|
||||
if ($name[0] != '#' && in_array($name, $timestamps) && $value &&
|
||||
(is_int($value) || is_string($value) && is_numeric($value)) &&
|
||||
($value > 21000000 || $value < 19000000))
|
||||
{
|
||||
@ -670,6 +667,45 @@ class etemplate_widget_nextmatch extends etemplate_widget
|
||||
return $row;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all timestamp columns incl. names with removed prefixes like cal_ or contact_
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
private static function get_timestamps()
|
||||
{
|
||||
return egw_cache::getTree(__CLASS__, 'timestamps', function()
|
||||
{
|
||||
$timestamps = array();
|
||||
foreach(scandir(EGW_SERVER_ROOT) as $app)
|
||||
{
|
||||
$dir = EGW_SERVER_ROOT.'/'.$app;
|
||||
if (is_dir($dir) && file_exists($dir.'/setup/tables_current.inc.php') &&
|
||||
($tables_defs = $GLOBALS['egw']->db->get_table_definitions($app)))
|
||||
{
|
||||
foreach($tables_defs as $defintion)
|
||||
{
|
||||
foreach($defintion['fd'] as $col => $data)
|
||||
{
|
||||
if ($data['type'] == 'timestamp' || $data['meta'] == 'timestamp')
|
||||
{
|
||||
$timestamps[] = $col;
|
||||
// some apps remove a prefix --> add prefix-less version too
|
||||
$matches = null;
|
||||
if (preg_match('/^(tz|acl|async|cal|contact|lock|history|link|cf|cat|et)_(.+)$/', $col, $matches))
|
||||
{
|
||||
$timestamps[] = $matches[2];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//error_log(__METHOD__."() returning ".array2string($timestamps));
|
||||
return $timestamps;
|
||||
}, array(), 86400); // cache for 1 day
|
||||
}
|
||||
|
||||
/**
|
||||
* Default maximum length for context submenus, longer menus are put as a "More" submenu
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user