You are here

function word_link_install in Word Link 7

Same name and namespace in other branches
  1. 8 word_link.install \word_link_install()
  2. 7.2 word_link.install \word_link_install()

Implements hook_install().

File

./word_link.install, line 10
Install, update, and uninstall functions for the word_link module.

Code

function word_link_install() {
  $t = get_t();
  drupal_set_message($t('Word Link module succesfully installed. Visit the <a href="@link">configuration page</a>.', array(
    '@link' => url('admin/config/content/word-link/configuration'),
  )));
}