public function MailhandlerCommandsFiles::getMappingSources in Mailhandler 7.2
Same name and namespace in other branches
- 6.2 plugins/mailhandler/commands/MailhandlerCommandsFiles.class.php \MailhandlerCommandsFiles::getMappingSources()
Implements getMappingSources().
Overrides MailhandlerCommands::getMappingSources
File
- plugins/
mailhandler/ commands/ MailhandlerCommandsFiles.class.php, line 38 - MailhandlerCommandsFiles class.
Class
- MailhandlerCommandsFiles
- Provides file attachments.
Code
public function getMappingSources($config) {
$sources = array();
$sources['attachments'] = array(
'title' => t('Attachments'),
'description' => t('Files attached to message.'),
);
return $sources;
}