You are here

function recipe_import_element_data in Recipe 6

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

Call-back function used by the XML parser.

1 string reference to 'recipe_import_element_data'
recipe_recipeML_import_form_submit in plugins/recipe_recipeML.module

File

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

Code

function recipe_import_element_data($parser, $data) {
  global $data_string;
  $data_string .= $data;
}