You are here

function workspaces_field_info_alter in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/workspaces/workspaces.module \workspaces_field_info_alter()
  2. 9 core/modules/workspaces/workspaces.module \workspaces_field_info_alter()

Implements hook_field_info_alter().

File

core/modules/workspaces/workspaces.module, line 73
Provides full-site preview functionality for content staging.

Code

function workspaces_field_info_alter(&$definitions) {
  \Drupal::service('class_resolver')
    ->getInstanceFromDefinition(EntityTypeInfo::class)
    ->fieldInfoAlter($definitions);
}