Version 1
[yaffs-website] / web / core / modules / system / tests / modules / theme_region_test / theme_region_test.module
1 <?php
2
3 /**
4  * @file
5  * Provides hook implementations for testing purposes.
6  */
7
8 /**
9  * Implements hook_preprocess_HOOK() for region templates.
10  */
11 function theme_region_test_preprocess_region(&$variables) {
12   if ($variables['region'] == 'sidebar_first') {
13     $variables['attributes']['class'][] = 'new_class';
14   }
15 }