function taxonomy_xml_install in Taxonomy import/export via XML 7
Same name and namespace in other branches
- 6.2 taxonomy_xml.install \taxonomy_xml_install()
Implementation of hook_install().
File
- ./
taxonomy_xml.install, line 10 - Install, update and uninstall functions for the taxonomy_xml module.
Code
function taxonomy_xml_install() {
// Make uploads easy. These are safe extensions
variable_set('upload_extensions_default', variable_get('upload_extensions_default', '') . ' xml rdf csv');
drupal_set_message(t("\n Taxonomy Import and Export functions are now available as TABS\n at !taxonomy_link.\n Lots of documentation about supported import/export syntaxed\n is available in the 'help' folder of this module.\n ", array(
'!taxonomy_link' => l('admin/structure/taxonomy', 'admin/structure/taxonomy'),
)));
}