You are here

function hubspot_install in HubSpot 6

Same name and namespace in other branches
  1. 8 hubspot.install \hubspot_install()
  2. 6.2 hubspot.install \hubspot_install()
  3. 7.3 hubspot.install \hubspot_install()
  4. 7 hubspot.install \hubspot_install()
  5. 7.2 hubspot.install \hubspot_install()
  6. 3.x hubspot.install \hubspot_install()

Implements hook_install() to notify user of successful installation.

File

./hubspot.install, line 10
Implement install/uninstall hooks and warn about webform component errors on disable.

Code

function hubspot_install() {
  drupal_set_message(st('The HubSpot module has been successfully installed. Configure it in the !link.', array(
    '!link' => l('HubSpot integration settings', 'admin/settings/hubspot'),
  )), 'status');
}