You are here

function _mailhandler_filter_description in Mailhandler 6.2

1 call to _mailhandler_filter_description()
mailhandler_filter in ./mailhandler.module
Implementation of hook_filter().

File

./mailhandler.module, line 232
Retrieves email for posting as nodes and comments.

Code

function _mailhandler_filter_description($delta = 0) {
  switch ($delta) {
    case 0:
      return t('Strips signatures from emails.');
    case 1:
      return t('Removes leading carets from quoted text');
  }
}