You are here

function date_recur_field_storage_config_update in Recurring Dates Field 8

Implements hook_ENTITY_TYPE_update().

ENTITY_TYPE: 'field_storage_config'.

See also

\Drupal\date_recur\DateRecurEntityHooks::fieldStorageConfigUpdate

File

./date_recur.module, line 65
Contains hooks for date_recur module.

Code

function date_recur_field_storage_config_update(FieldStorageConfigInterface $fieldStorage) {

  /** @var \Drupal\date_recur\DateRecurEntityHooks $entityHooks */
  $entityHooks = \Drupal::service('date_recur.entity_hooks');
  $entityHooks
    ->fieldStorageConfigUpdate($fieldStorage);
}