You are here

function google_adwords_install in Google AdWords Conversion Tracking 7.2

Same name and namespace in other branches
  1. 8 google_adwords.install \google_adwords_install()
  2. 6 google_adwords.install \google_adwords_install()

Implements hook_install().

File

./google_adwords.install, line 11
Install, update, and uninstall functions for the Google Adwords module.

Code

function google_adwords_install() {

  // @TODO  These needs rewritten using l().
  $t = get_t();
  drupal_set_message($t('Google AdWords module installed successfully. You must <a href="@fields">configure a Google Adwords Tracking field</a>. You can set <a href="@permissions">permissions</a> and <a href="@configuration">configure</a> the module.', array(
    '@permissions' => url('admin/people/permissions', array(
      'fragment' => 'module-google_adwords',
    )),
    '@configuration' => url('admin/config/system/google_adwords'),
    '@fields' => url('admin/structure/types'),
  )));
}