rh_file.module in Rabbit Hole 2.x
Same filename and directory in other branches
Contains rh_file.module.
File
modules/rh_file/rh_file.moduleView source
<?php
/**
* @file
* Contains rh_file.module.
*/
use Drupal\Core\Entity\EntityTypeInterface;
/**
* Implements hook_entity_base_field_info().
*/
function rh_file_entity_base_field_info(EntityTypeInterface $entity_type) {
if ($entity_type
->id() == 'file') {
return \Drupal::service('rabbit_hole.entity_extender')
->getRabbitHoleFields('file');
}
}
Functions
Name | Description |
---|---|
rh_file_entity_base_field_info | Implements hook_entity_base_field_info(). |