You are here

function maillog_install in Maillog / Mail Developer 6

Same name and namespace in other branches
  1. 8 maillog.install \maillog_install()

Implementation of hook_install().

File

./maillog.install, line 37
Provides the installation routines for the maillog module

Code

function maillog_install() {
  drupal_install_schema('maillog');
  variable_set('smtp_library', drupal_get_path('module', 'maillog') . '/includes/maillog.inc');
}