You are here

function get_template in Recipe 7

Same name and namespace in other branches
  1. 6 plugins/recipe_mastercook4.module \get_template()
  2. 7.2 modules/recipe_mastercook4.module \get_template()
1 call to get_template()
merge_template in includes/recipe_mastercook4.module

File

includes/recipe_mastercook4.module, line 156
recipe_mastercook4.module - Enables importing and exporting of MasterCook4 format recipes.

Code

function get_template() {
  $template = "\n                     *  Exported from  MasterCook  *\n\n<<title>>\n\nRecipe By     : <<recipeby>>\nServing Size  : <<servingsize>>   Preparation Time :<<preptime>>\nCategories    : <<categories>>\n\n  Amount  Measure       Ingredient -- Preparation Method\n--------  ------------  --------------------------------\n<<ingredients>>\n<<instructions>>\n\n                   - - - - - - - - - - - - - - - - - -\n\n<<notes>>\n";
  return $template;
}