You are here

function taxonomy_xml_install in Taxonomy import/export via XML 6.2

Same name and namespace in other branches
  1. 7 taxonomy_xml.install \taxonomy_xml_install()

Implementation of hook_install().

File

./taxonomy_xml.install, line 11
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/content/taxonomy', 'admin/content/taxonomy'),
  )));
}