function workspaces_module_preinstall in Drupal 9
Same name and namespace in other branches
- 8 core/modules/workspaces/workspaces.install \workspaces_module_preinstall()
Implements hook_module_preinstall().
File
- core/
modules/ workspaces/ workspaces.install, line 33 - Contains install, update and uninstall functions for the Workspaces module.
Code
function workspaces_module_preinstall($module) {
if ($module !== 'workspaces') {
return;
}
/** @var \Drupal\workspaces\WorkspaceManagerInterface $workspace_manager */
$workspace_manager = \Drupal::service('workspaces.manager');
$entity_definition_update_manager = \Drupal::entityDefinitionUpdateManager();
foreach ($entity_definition_update_manager
->getEntityTypes() as $entity_type) {
if ($workspace_manager
->isEntityTypeSupported($entity_type)) {
$entity_type
->setRevisionMetadataKey('workspace', 'workspace');
$entity_definition_update_manager
->updateEntityType($entity_type);
}
}
}