blob: 944c2369011cb9fadb0971084f540604dc7b3b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
// $Id$
/**
* Tests a theme overriding a suggestion of a base theme hook.
*/
function test_theme_breadcrumb__suggestion($variables) {
// Tests that preprocess functions for the base theme hook get called even
// when the suggestion has an implementation.
return 'test_theme_breadcrumb__suggestion: ' . $variables['theme_test_preprocess_breadcrumb'];
}
|