You are here

function varbase_core_update_8608 in Varbase Core 8.8

Same name and namespace in other branches
  1. 8.6 varbase_core.install \varbase_core_update_8608()
  2. 8.7 varbase_core.install \varbase_core_update_8608()
  3. 9.0.x varbase_core.install \varbase_core_update_8608()

Change and shift Varbase Media responsive image styles to work with.

The mapping of Bootstrap 3 breakpoints into Bootstrap 4 breakpoints.

File

./varbase_core.install, line 201
Install, update and uninstall functions for the Varbase core module.

Code

function varbase_core_update_8608() {

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

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

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