function rh_commerce_entity_base_field_info in Rabbit Hole 8
Same name and namespace in other branches
- 2.x modules/rh_commerce/rh_commerce.module \rh_commerce_entity_base_field_info()
Implements hook_entity_base_field_info().
File
- modules/
rh_commerce/ rh_commerce.module, line 13 - Contains rh_commerce.module.
Code
function rh_commerce_entity_base_field_info(EntityTypeInterface $entity_type) {
if ($entity_type
->id() === 'commerce_product') {
return \Drupal::service('rabbit_hole.entity_extender')
->getRabbitHoleFields('commerce_product');
}
}