This file contains hidden or 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
function basic_theme_suggestions_block_alter(array &$suggestions, array $variables) { | |
$block = $variables['elements']; | |
$blockType = $block['#configuration']['provider']; | |
if ($blockType == "block_content") { | |
$bundle = $block['content']['#block_content']->bundle(); | |
$suggestions[] = 'block__' . $bundle; | |
} |
This file contains hidden or 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
name: drupal-test | |
recipe: drupal9 | |
config: | |
webroot: . | |
php: 8.1 | |
services: | |
appserver: | |
build_as_root: | |
# Install nodejs and yarn in the main container. They have to live here | |
# because PHP is required for the site installation and other ops in |