You are here

function social_core_update_10101 in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_core/social_core.install \social_core_update_10101()
  2. 10.1.x modules/social_features/social_core/social_core.install \social_core_update_10101()

Install ultimate cron module.

File

modules/social_features/social_core/social_core.install, line 1318
Install, update and uninstall functions for the social_core module.

Code

function social_core_update_10101() {
  $modules = [
    'ultimate_cron',
    'social_advanced_queue',
  ];
  \Drupal::service('module_installer')
    ->install($modules);
}