function get_template in Recipe 7.2
Same name and namespace in other branches
- 6 plugins/recipe_mastercook4.module \get_template()
- 7 includes/recipe_mastercook4.module \get_template()
1 call to get_template()
- merge_template in modules/
recipe_mastercook4.module
File
- modules/
recipe_mastercook4.module, line 179 - 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<<description>>\n";
return $template;
}