Last active
October 9, 2024 18:14
-
-
Save gwagroves/58156593ef87c815d4bed6a86f0bf370 to your computer and use it in GitHub Desktop.
Drupal 8 Paragraphs: Add a theme suggestion based on the paragraph and the type of the parent node / entity.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implements theme_suggestions_HOOK_alter(). | |
*/ | |
function mytheme_theme_suggestions_paragraph_alter(array &$suggestions, array $variables) { | |
/** @var \Drupal\paragraphs\ParagraphInterface $paragraph */ | |
$paragraph = $variables['elements']['#paragraph']; | |
/** @var \Drupal\Core\Entity\ContentEntityInterface $parent */ | |
$parent = $paragraph->getParentEntity(); | |
$suggestions[] = 'paragraph__' . $paragraph->bundle() . '__' . $parent->bundle(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think it's better to consider the parent already included in $variables this way :