You are here

function recipe_help in Recipe 5

Same name and namespace in other branches
  1. 6 recipe.module \recipe_help()
  2. 7.2 recipe.module \recipe_help()
  3. 7 recipe.module \recipe_help()

Implementation of hook_help().

1 string reference to 'recipe_help'
recipe_admin_settings in ./recipe.module
Settings form for menu callback

File

./recipe.module, line 72
recipe.module - share recipes for drupal 5.x

Code

function recipe_help($section) {
  switch ($section) {
    case 'node/add/recipe':
      return variable_get("recipe_help", "");
  }
}