You are here

function acquia_contenthub_theme_suggestions_region in Acquia Content Hub 8

Implements hook_theme_suggestions_HOOK().

File

./acquia_contenthub.module, line 230
Contains acquia_contenthub.module.

Code

function acquia_contenthub_theme_suggestions_region(array $variables) {
  if ($variables['elements']['#region'] === 'content' && \Drupal::routeMatch()
    ->getRouteName() === 'acquia_contenthub.content_entity_display.entity') {
    return [
      'region__content__acquia_contenthub',
    ];
  }
}