function nyan_cat_theme

Implements hook_theme().

File

drupal/modules/simpletest/tests/themes/engines/nyan_cat/nyan_cat.engine, line 21
Handles integration of Nyan cat templates because we love kittens.

Code

function nyan_cat_theme($existing, $type, $theme, $path) {
  $templates = drupal_find_theme_functions($existing, array(
    $theme,
  ));
  $templates += drupal_find_theme_templates($existing, '.nyan-cat.html', $path);
  return $templates;
}