Apparently we successfully made this unnecessary

This commit is contained in:
benjamin melançon 2018-09-03 22:43:48 -04:00
parent 31e0d11415
commit 99d1427306

View file

@ -1,22 +0,0 @@
<?php
// TODO: Make this file unnecessary because we will not allow deploying code to the platform
/**
* @file
* Theme functions.
*/
/**
* Implements hook_theme_suggestions_HOOK_alter for blocks.
*
* See "Inheriting Block Templates" in
* https://www.drupal.org/docs/8/theming-drupal-8/creating-a-drupal-8-sub-theme-or-sub-theme-of-sub-theme
*/
function family_home_theme_suggestions_block_alter(&$suggestions, $variables) {
// Load theme suggestions for blocks from parent theme.
foreach ($suggestions as &$suggestion) {
$suggestion = str_replace('family_home_', 'octavia_', $suggestion);
}
}