AlkantarClanX12

Your IP : 216.73.216.176


Current Path : /var/www/clients/client1/web1/web/modules/simpletest/tests/
Upload File :
Current File : /var/www/clients/client1/web1/web/modules/simpletest/tests/theme_test.inc

<?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';
}