2
0
forked from Wavyzz/dolibarr

add function isDolValidTms

This commit is contained in:
Frédéric FRANCE
2024-01-15 00:02:34 +01:00
committed by GitHub
parent ac6e8c8cd3
commit c8ecdb8e7a

View File

@@ -234,6 +234,25 @@ function isModEnabled($module)
//return !empty($conf->$module->enabled);
}
/**
* isDolValidTms check if a timestamp is valid.
*
* @param int|string|null $timestamp
* @return bool
*/
function isDolValidTms($timestamp)
{
if ($timestamp == '') {
dol_syslog('Using empty string for a timestamp is deprecated, prefer use of null when calling page '.$_SERVER["PHP_SELF"], LOG_NOTICE);
return false;
}
if (is_null($timestamp) || !is_numeric($timestamp)) {
return false;
}
return true;
}
/**
* Return a DoliDB instance (database handler).
*