view core/modules/path/path.install @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
line wrap: on
line source
<?php

/**
 * @file
 * Update functions for the path module.
 */

/**
 * Change the path field to computed for node and taxonomy_term.
 */
function path_update_8200() {
  $entity_definition_update_manager = \Drupal::entityDefinitionUpdateManager();
  foreach (['node', 'taxonomy_term'] as $entity_type_id) {
    if ($entity_definition_update_manager->getEntityType($entity_type_id)) {
      // Computed field definitions are not tracked by the entity definition
      // update manager, so remove them.
      $storage_definition = $entity_definition_update_manager->getFieldStorageDefinition('path', $entity_type_id);
      if ($storage_definition) {
        $entity_definition_update_manager->uninstallFieldStorageDefinition($storage_definition);
      }
    }
  }
}