mimemail_example.install in Mime Mail 7
Install, update and uninstall functions for Mime Mail Example module.
File
modules/mimemail_example/mimemail_example.installView source
<?php
/**
* @file
* Install, update and uninstall functions for Mime Mail Example module.
*/
/**
* Implements hook_enable().
*/
function mimemail_example_enable() {
mailsystem_set(array(
'mimemail_example' => 'MimeMailSystem',
));
}
/**
* Implements hook_disable().
*/
function mimemail_example_disable() {
mailsystem_clear(array(
'mimemail_example' => 'MimeMailSystem',
));
}
Functions
Name | Description |
---|---|
mimemail_example_disable | Implements hook_disable(). |
mimemail_example_enable | Implements hook_enable(). |