You are here

function tmgmt_extension_suit_update_8201 in TMGMT Extension Suite 8.2

Set default interval for check status cron job.

File

./tmgmt_extension_suit.install, line 280
Update function for the tmgmt_extension_suit module.

Code

function tmgmt_extension_suit_update_8201() {
  $three_hours_in_seconds = 10800;
  $config = \Drupal::configFactory()
    ->getEditable('tmgmt_extension_suit.settings');
  $config
    ->set('interval', $three_hours_in_seconds)
    ->save(TRUE);
}