mail_debugger.module in Mail Debugger 7.3
File
mail_debugger.module
View source
<?php
function mail_debugger_permission() {
return array(
'use mail debugger tools' => array(
'title' => t('Use mail debugger tools'),
'restrict access' => TRUE,
),
);
}
function mail_debugger_menu() {
return array(
'admin/config/development/mail_debugger' => array(
'title' => "Mail debugger",
'description' => "Test the mail interface",
'page arguments' => array(
'mail_debugger_callback',
),
'page callback' => 'drupal_get_form',
'access arguments' => array(
'use mail debugger tools',
),
'file' => 'includes/mail_debugger.callback.inc',
'type' => MENU_LOCAL_TASK,
),
);
}
function mail_debugger_hook_info() {
return array(
'mail_debugger_info' => array(
'group' => 'mail_debugger',
),
'mail_debugger_info_alter' => array(
'group' => 'mail_debugger',
),
);
}