You are here

function rh_media_entity_base_field_info in Rabbit Hole 2.x

Same name and namespace in other branches
  1. 8 modules/rh_media/rh_media.module \rh_media_entity_base_field_info()

Implements hook_entity_base_field_info().

File

modules/rh_media/rh_media.module, line 13
Contains rh_media.module.

Code

function rh_media_entity_base_field_info(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->id() == 'media') {
    return \Drupal::service('rabbit_hole.entity_extender')
      ->getRabbitHoleFields('media');
  }
}