function taxonomy_xml_load_format in Taxonomy import/export via XML 7
Conditionally include the named format library.
2 calls to taxonomy_xml_load_format()
- taxonomy_xml_format_info in ./
taxonomy_xml.module - Return info array describing a supported format.
- taxonomy_xml_import_from_url in ./
taxonomy_xml.process.inc - Import data from one URL. Function used by the batch operation
File
- ./
taxonomy_xml.module, line 361 - Make it possible to import and export taxonomies as XML documents.
Code
function taxonomy_xml_load_format($format) {
module_load_include('inc', 'taxonomy_xml', 'formats/' . $format . '_format');
}