function social_user_update_8007 in Open Social 10.1.x
Same name and namespace in other branches
- 8.9 modules/social_features/social_user/social_user.install \social_user_update_8007()
- 8.5 modules/social_features/social_user/social_user.install \social_user_update_8007()
- 8.6 modules/social_features/social_user/social_user.install \social_user_update_8007()
- 8.7 modules/social_features/social_user/social_user.install \social_user_update_8007()
- 8.8 modules/social_features/social_user/social_user.install \social_user_update_8007()
- 10.3.x modules/social_features/social_user/social_user.install \social_user_update_8007()
- 10.0.x modules/social_features/social_user/social_user.install \social_user_update_8007()
- 10.2.x modules/social_features/social_user/social_user.install \social_user_update_8007()
Install views_bulk_operations module.
File
- modules/
social_features/ social_user/ social_user.install, line 103 - Install, update and uninstall functions for the social_user module.
Code
function social_user_update_8007() {
$modules = [
'views_bulk_operations',
];
\Drupal::service('module_installer')
->install($modules);
// Rebuild the router for social_event_managers.route_subscriber.
\Drupal::service('router.builder')
->rebuild();
}