You are here

function email_verify_install in Email Verify 7

Same name and namespace in other branches
  1. 8.2 email_verify.install \email_verify_install()
  2. 7.2 email_verify.install \email_verify_install()

Implements hook_install().

Display a message to the admin about activating this module.

File

./email_verify.install, line 12
Install, update and uninstall related functions for the module.

Code

function email_verify_install() {
  $t = get_t();
  $link = l($t('administrative settings page'), 'admin/config/system/email_verify');
  $message = $t('The Email Verify module has been installed and enabled. However, before it can be used, it must be activated and configured on its !adminpage.', array(
    '!adminpage' => $link,
  ));
  drupal_set_message($message);
}