postmark.install in Postmark 6
Same filename and directory in other branches
PostMark installation functions.
File
postmark.installView source
<?php
/**
* @file
* PostMark installation functions.
*/
/**
* Implementation of hook_uninstall().
*/
function postmark_uninstall() {
// Remove the SMTP library value
if (strpos(variable_get('smtp_library', ''), 'postmark')) {
variable_del('smtp_library');
}
variable_del('postmark_enabled');
variable_del('postmark_api_key');
}
Functions
Name | Description |
---|---|
postmark_uninstall | Implementation of hook_uninstall(). |