mirror of
https://github.com/Mibew/java.git
synced 2025-01-22 17:40:35 +03:00
Store time of last cron run
This commit is contained in:
parent
663c9119e6
commit
ba2ede20aa
@ -38,9 +38,12 @@ calculate_thread_statistics();
|
|||||||
calculate_operator_statistics();
|
calculate_operator_statistics();
|
||||||
calculate_page_statistics();
|
calculate_page_statistics();
|
||||||
|
|
||||||
|
|
||||||
// Trigger cron event
|
// Trigger cron event
|
||||||
$dispatcher = EventDispatcher::getInstance();
|
$dispatcher = EventDispatcher::getInstance();
|
||||||
$dispatcher->triggerEvent('cronRun');
|
$dispatcher->triggerEvent('cronRun');
|
||||||
|
|
||||||
|
// Update time of last cron run
|
||||||
|
Settings::set('_last_cron_run', time());
|
||||||
|
Settings::update();
|
||||||
|
|
||||||
?>
|
?>
|
@ -103,7 +103,14 @@ Class Settings {
|
|||||||
'invitation_lifetime' => 60, /* Lifetime for invitation to chat */
|
'invitation_lifetime' => 60, /* Lifetime for invitation to chat */
|
||||||
'tracking_lifetime' => 600, /* Time to store tracked old visitors' data */
|
'tracking_lifetime' => 600, /* Time to store tracked old visitors' data */
|
||||||
|
|
||||||
'cron_key' => $default_cron_key
|
'cron_key' => $default_cron_key,
|
||||||
|
|
||||||
|
// System values are listed below. They cannot be changed via
|
||||||
|
// administrative interface. Start names for these values from
|
||||||
|
// underscore sign(_).
|
||||||
|
|
||||||
|
// Unix timestamp when cron job ran last time.
|
||||||
|
'_last_cron_run' => 0
|
||||||
);
|
);
|
||||||
|
|
||||||
// Load values from database
|
// Load values from database
|
||||||
|
Loading…
Reference in New Issue
Block a user