You are here

taxonomy_server.install in Taxonomy import/export via XML 7

Install, update and uninstall functions for the taxonomy_server module.

File

taxonomy_server/taxonomy_server.install
View source
<?php

/**
 * @file
 *   Install, update and uninstall functions for the taxonomy_server module.
 */

/**
 * Implementation of hook_install().
 */
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'),
  )));
}

/**
 * Implementation of hook_uninstall().
 */
function taxonomy_server_uninstall() {
}

Functions

Namesort descending Description
taxonomy_server_install Implementation of hook_install().
taxonomy_server_uninstall Implementation of hook_uninstall().