public function SubEntityDefinitionUpdateManager::publicDoFieldUpdate in Entity Update 8
Performs a field storage definition update.
Parameters
string $op: The operation to perform, possible values are static::DEFINITION_CREATED, static::DEFINITION_UPDATED or static::DEFINITION_DELETED.
array|null $storage_definition: The new field storage definition.
array|null $original_storage_definition: The original field storage definition.
File
- src/
SubEntityDefinitionUpdateManager.php, line 47
Class
- SubEntityDefinitionUpdateManager
- This is an extention of EntityDefinitionUpdateManager.
Namespace
Drupal\entity_updateCode
public function publicDoFieldUpdate($op, $storage_definition = NULL, $original_storage_definition = NULL) {
return parent::doFieldUpdate($op, $storage_definition, $original_storage_definition);
}