You are here

function taxonomy_server_install in Taxonomy import/export via XML 7

Implementation of hook_install().

File

taxonomy_server/taxonomy_server.install, line 11
Install, update and uninstall functions for the taxonomy_server module.

Code

function taxonomy_server_install() {
  drupal_set_message(t("\n    System vocabularies are now published\n    (to roles with the appropriate permissions)\n    underneath <a href='!taxonomy_vocabulary'>taxonomy/vocabulary</a>.\n    A menu SUGGESTED item is available for this path,\n    (In the 'Navigation' menu by default)\n    you may want to enable it now.\n  ", array(
    '!taxonomy_vocabulary' => url('taxonomy/vocabulary'),
  )));
}