2020-05-29 21:35:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Block preprocess hooks.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_preprocess_HOOK().
|
|
|
|
*/
|
2020-08-24 08:26:44 +00:00
|
|
|
function opdavies_blog_preprocess_block(array &$variables): void {
|
2020-05-29 21:35:33 +00:00
|
|
|
// Add the 'markup' class to blocks.
|
|
|
|
if (in_array($variables['plugin_id'], ['views_block:featured_blog_posts-block_1'])) {
|
|
|
|
$variables['attributes']['class'][] = 'markup';
|
|
|
|
}
|
|
|
|
}
|