You are here

function recipe_html_theme in Recipe 6

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

Implementation of hook_theme().

File

plugins/recipe_html.module, line 86
recipe_recipeML.module - Enables importing and exporting of recipeML format recipes.

Code

function recipe_html_theme() {
  return array(
    'recipe_export_html_page' => array(
      'function' => 'theme_recipe_export_html_page',
      'arguments' => array(
        'node' => NULL,
      ),
    ),
    'recipe_html_node' => array(
      'arguments' => array(
        'node' => NULL,
        'teaser' => FALSE,
        'page' => FALSE,
      ),
      'template' => 'recipe_html_node',
    ),
  );
}