test_theme_nyan_cat_engine.theme 236 B

12345678910111213
  1. <?php
  2. /**
  3. * @file
  4. * Test theme.
  5. */
  6. /**
  7. * Implements hook_preprocess_theme_test_template_test().
  8. */
  9. function test_theme_nyan_cat_engine_preprocess_theme_test_template_test(&$variables) {
  10. $variables['kittens'] = 'All of them';
  11. }