function sharedemail_install in Shared Email 6
Same name and namespace in other branches
- 5 sharedemail.install \sharedemail_install()
- 7 sharedemail.install \sharedemail_install()
Implementation of hook_install().
File
- ./
sharedemail.install, line 10 - Allows for muliple users to share an email address
Code
function sharedemail_install() {
$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 email address. ' . 'You can do this at any time from your account page when you login.');
variable_set('sharedemail_msg', $msg);
db_query("UPDATE {system} SET weight = -99 WHERE name = 'sharedemail'");
drupal_set_message(t('The Shared Email module has been installed'));
}