theme_test.inc
Archivo
drupal-7.x/modules/simpletest/tests/theme_test.incView source
- <?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';
- }
-
Functions
|
Nombre |
Descripción |
|---|---|
| template_preprocess_theme_test | Preprocesses variables for theme_theme_test(). |
| theme_theme_test | Returns HTML for the 'theme_test' theme hook used by tests. |