You are here

function social_core_update_8811 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_8811()
  2. 10.3.x modules/social_features/social_core/social_core.install \social_core_update_8811()
  3. 10.0.x modules/social_features/social_core/social_core.install \social_core_update_8811()
  4. 10.1.x modules/social_features/social_core/social_core.install \social_core_update_8811()

Block changes for the social_event request enrollment feature.

File

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

Code

function social_core_update_8811() {

  /** @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_8811');

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