You are here

function recipe_html_theme in Recipe 7.2

Same name and namespace in other branches
  1. 6 plugins/recipe_html.module \recipe_html_theme()
  2. 7 includes/recipe_html.module \recipe_html_theme()

Implements hook_theme().

File

modules/recipe_html.module, line 69
Enables a print view for recipes.

Code

function recipe_html_theme() {
  return array(
    'recipe_html_page' => array(
      'template' => 'recipe_html_node',
      'variables' => array(
        'node' => NULL,
      ),
    ),
  );
}