You are here

function social_group_flexible_group_update_8903 in Open Social 10.1.x

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_group/modules/social_group_flexible_group/social_group_flexible_group.install \social_group_flexible_group_update_8903()
  2. 10.0.x modules/social_features/social_group/modules/social_group_flexible_group/social_group_flexible_group.install \social_group_flexible_group_update_8903()
  3. 10.2.x modules/social_features/social_group/modules/social_group_flexible_group/social_group_flexible_group.install \social_group_flexible_group_update_8903()

Configuration update.

File

modules/social_features/social_group/modules/social_group_flexible_group/social_group_flexible_group.install, line 172
Install and update functions for the social_group_flexible_group module.

Code

function social_group_flexible_group_update_8903() {

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

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

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