You are here

function tipsy_install in Tipsy 8

Same name and namespace in other branches
  1. 7 tipsy.install \tipsy_install()

Implements hook_install().

File

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

Code

function tipsy_install() {
  drupal_set_message(t("Tipsy has been successfully installed. Visit the <a href=@href>settings page</a> for tooltips of your choice.", array(
    '@href' => base_path() . 'admin/config/user-interface/tipsy',
  )));
}