function recipe_import_element_data in Recipe 7.2
Same name and namespace in other branches
- 6 plugins/recipe_recipeML.module \recipe_import_element_data()
- 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'
File
- modules/
recipe_recipeML.module, line 449 - Enables importing and exporting of recipeML format recipes.
Code
function recipe_import_element_data($parser, $data) {
global $data_string;
$data_string .= $data;
}