blob: 6cde68384fa5240636bc0e049dbb216fece61a21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Returns HTML for the 'theme_test' theme hook used by tests.
*/
function theme_theme_test($variables) {
return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
}
/**
* Preprocesses variables for theme_theme_test().
*/
function template_preprocess_theme_test(&$variables) {
$variables['foo'] = 'template_preprocess_theme_test';
}
|