SqlContentEntityStorageSchema::hasSharedTableStructureChange

protected SqlContentEntityStorageSchema::hasSharedTableStructureChange(EntityTypeInterface $entity_type, EntityTypeInterface $original)

Detects whether there is a change in the shared table structure.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The new entity type.

\Drupal\Core\Entity\EntityTypeInterface $original: The origin entity type.

Return value

bool Returns TRUE if either the revisionable or translatable flag changes or a table has been renamed.

File

core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 145

Class

SqlContentEntityStorageSchema
Defines a schema handler that supports revisionable, translatable entities.

Namespace

Drupal\Core\Entity\Sql

Code

protected function hasSharedTableStructureChange(EntityTypeInterface $entity_type, EntityTypeInterface $original) {
  return 
  $entity_type->isRevisionable() != $original->isRevisionable() ||
    $entity_type->isTranslatable() != $original->isTranslatable() ||
    $this->hasSharedTableNameChanges($entity_type, $original);
}
doc_Drupal
2016-10-29 09:43:40
Comments
Leave a Comment

Please login to continue.