mailmime.module in Mail MIME 7
Same filename and directory in other branches
File
mailmime.moduleView 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(
    drupal_realpath(file_build_uri('PEAR')),
  ), explode(PATH_SEPARATOR, get_include_path())))));
}Functions
| 
            Name | 
                  Description | 
|---|---|
| mailmime_init | Implements hook_init() to add the local PEAR repository to the include path. |