You are here

function hubspot_install in HubSpot 7.3

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 hubspot.install \hubspot_install()
  5. 7.2 hubspot.install \hubspot_install()
  6. 3.x hubspot.install \hubspot_install()

Implements hook_install().

File

./hubspot.install, line 10
Installation file for hubspot.

Code

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