You are here

postmark.install in Postmark 6

Same filename and directory in other branches
  1. 8 postmark.install
  2. 7 postmark.install

PostMark installation functions.

File

postmark.install
View 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

Namesort descending Description
postmark_uninstall Implementation of hook_uninstall().