Skip to content
Snippets Groups Projects
Commit adc0883f authored by Lily Yan's avatar Lily Yan Committed by Igor Biki
Browse files

ISTWCMS-5878 Remove block.inc file which is related to gesso only

parent efdc05a3
No related branches found
No related tags found
1 merge request!93ISTWCMS-5878 ISTWCMS-5878 Remove Gesso after 3.2.0 has shipped
<?php
/**
* @file
* Provides the necessary hooks for the block theme suggestions.
*/
use Drupal\block_content\BlockContentInterface;
/**
* Implements hook_theme_suggestions_HOOK_alter().
*/
function gesso_theme_suggestions_block_alter(array &$suggestions, array $variables) {
$content = $variables['elements']['content'];
if (isset($content['#block_content']) and $content['#block_content'] instanceof BlockContentInterface) {
$suggestions = [];
$bundle = $content['#block_content']->bundle();
$view_mode = $content['#view_mode'];
$suggestions[] = 'block__' . $bundle;
$suggestions[] = 'block__' . $view_mode;
$suggestions[] = 'block__' . $bundle . '__' . $view_mode;
if (!empty($variables['elements']['#id'])) {
$suggestions[] = 'block__' . $variables['elements']['#id'];
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment