You are here

function sharedemail_install in Shared Email 7

Same name and namespace in other branches
  1. 5 sharedemail.install \sharedemail_install()
  2. 6 sharedemail.install \sharedemail_install()

Implements hook_install().

File

./sharedemail.install, line 11
Allow an e-mail address to be used by more than one user account.

Code

function sharedemail_install() {
  $t = get_t();
  $msg = $t('WARNING: The e-mail address you are using, has already been registered on this site by another user. ' . 'You should be aware that personal information such as password resets will be sent to this address. ' . 'We strongly recommend changing your registered address to a different e-mail address. ' . 'You can do this at any time from your account page when you login.');
  variable_set('sharedemail_msg', $msg);
  db_update('system')
    ->fields(array(
    'weight' => -99,
  ))
    ->condition('name', 'sharedemail')
    ->execute();
  drupal_set_message($t('The Shared E-mail module has been installed'));
}