1e0a7a654ad8c4022a801d4fee559ff24356539b
[yaffs-website] / theme_test.inc
1 <?php
2
3 /**
4  * @file
5  * Include file for test module.
6  */
7
8 /**
9  * Returns HTML for the 'theme_test' theme hook used by tests.
10  */
11 function theme_theme_test($variables) {
12   return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
13 }
14
15 /**
16  * Preprocesses variables for theme_theme_test().
17  */
18 function template_preprocess_theme_test(&$variables) {
19   $variables['foo'] = 'template_preprocess_theme_test';
20 }