You are here

function hubspot_install in HubSpot 7

Same name and namespace in other branches
  1. 8 hubspot.install \hubspot_install()
  2. 6.2 hubspot.install \hubspot_install()
  3. 6 hubspot.install \hubspot_install()
  4. 7.3 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
Handle install/uninstall and warn users of problems with disabled Webform components.

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/config/content/hubspot'),
  )), 'status');
}