You are here

mailmime.module in Mail MIME 6

File

mailmime.module
View source
<?php

/**
 * Implements hook_init() to add the local PEAR repository to the include path.
 */
function mailmime_init() {
  set_include_path(implode(PATH_SEPARATOR, array_unique(array_merge(array(
    file_directory_path() . '/PEAR',
  ), explode(PATH_SEPARATOR, get_include_path())))));
}

Functions

Namesort descending Description
mailmime_init Implements hook_init() to add the local PEAR repository to the include path.