You are here

function pagerer_install in Pagerer 7

Implements hook_install().

File

./pagerer.install, line 17
Pagerer install

Code

function pagerer_install() {
  $t = get_t();
  drupal_set_message($t('The Pagerer module has been installed. Visit <a href="@url">configure</a> for configuration.', array(
    '@url' => url('admin/config/user-interface/pagerer'),
  )));
}