You are here

function calendar_entity_base_field_info_alter in Calendar 8.2

Implements hook_entity_base_field_info_alter().

File

./calendar.module, line 72
Contains calendar.module.

Code

function calendar_entity_base_field_info_alter(&$fields, $entity_type) {
  if ($entity_type
    ->id() == 'node') {
    if (isset($fields['title'])) {
      $fields['title']
        ->setDisplayConfigurable('view', TRUE);
    }
  }
}