You are here

function social_search_update_10302 in Open Social 10.3.x

Update the Search Groups "type" filter.

File

modules/social_features/social_search/social_search.install, line 262
Install, update and uninstall functions for the social_search module.

Code

function social_search_update_10302() {

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

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

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