You are here

function twigsuggest_theme_suggestions_block_alter in Twig Template Suggester 8

Implements hook_theme_suggestions_HOOK_alter() for block templates.

Remove duplicate template suggestions for blocks.

File

./twigsuggest.module, line 330
Twig Template Suggester module hook implementations.

Code

function twigsuggest_theme_suggestions_block_alter(array &$suggestions, array $variables) {
  $suggestions = array_unique($suggestions);
}