You are here

function menu_item_fields_field_storage_config_presave in Menu item content fields 8

Implements hook_field_storage_config_presave().

File

./menu_item_fields.module, line 171
Contains hooks for the Menu Item Fields module.

Code

function menu_item_fields_field_storage_config_presave(EntityInterface $entity) {
  if ($entity
    ->get('entity_type') === 'menu_link_content') {
    menu_item_fields_set_config_dependencies($entity);
  }
}