You are here

function social_group_update_8907 in Open Social 10.2.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_group/social_group.install \social_group_update_8907()

Add translation compatibility for Event fields and views.

File

modules/social_features/social_group/social_group.install, line 647
Install, update and uninstall functions for the social_group module.

Code

function social_group_update_8907() {

  /** @var \Drupal\update_helper\Updater $updateHelper */
  $updateHelper = \Drupal::service('update_helper.updater');

  // Execute configuration update definitions with logging of success.
  $updateHelper
    ->executeUpdate('social_group', 'social_group_update_8907');

  // Output logged messages to related channel of update execution.
  return $updateHelper
    ->logger()
    ->output();
}