You are here

function site_banner_enable in Site Banner 7

Implements hook_enable().

File

./site_banner.install, line 11
Install file for site banner module.

Code

function site_banner_enable() {
  drupal_set_message(t('The site banner module is now enabled. To activate and configure the banner please go to the !settings_page.', array(
    '!settings_page' => l(t('settings page'), 'admin/config/user-interface/site_banner'),
  )));
}