You are here

function email_verify_install in Email Verify 8.2

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

Implements hook_install().

Display a message to the admin about activating this module.

File

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

Code

function email_verify_install() {
  drupal_set_message(t('The Email Verify module has been installed and enabled. However, before it can be used, it must be activated and configured on the module <a href=":adminpage">configuration page</a>.', array(
    ':adminpage' => '/admin/config/system/email_verify',
  )), 'warning');
}