You are here

function social_core_update_8813 in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_core/social_core.install \social_core_update_8813()
  2. 10.3.x modules/social_features/social_core/social_core.install \social_core_update_8813()
  3. 10.0.x modules/social_features/social_core/social_core.install \social_core_update_8813()
  4. 10.1.x modules/social_features/social_core/social_core.install \social_core_update_8813()

Block changes for the social_group_request feature.

File

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

Code

function social_core_update_8813() {

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

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

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