You are here

function adsense_install in Google AdSense integration 7

Same name and namespace in other branches
  1. 5.3 adsense.install \adsense_install()
  2. 5 adsense.install \adsense_install()
  3. 5.2 adsense.install \adsense_install()
  4. 6 adsense.install \adsense_install()

Implements hook_install().

File

./adsense.install, line 11
Install file of the adsense module.

Code

function adsense_install() {
  $t = get_t();
  drupal_set_message($t("AdSense settings are available under !link", array(
    '!link' => l($t('Administration') . ' > ' . $t('Configuration') . ' > ' . $t('Web services') . ' > ' . $t('AdSense'), 'admin/config/services/adsense'),
  )));
}