function contact_attach_menu in Contact Attach 6
Same name and namespace in other branches
- 5 contact_attach.module \contact_attach_menu()
- 7 contact_attach.module \contact_attach_menu()
Implementation of hook_menu().
File
- ./
contact_attach.module, line 48 - Allows attaching files to e-mails sent using the site-wide contact form.
Code
function contact_attach_menu() {
$items = array();
$items['admin/settings/contact_attach'] = array(
'title' => 'Contact attach',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'contact_attach_admin_settings',
),
'access arguments' => array(
'administer site configuration',
),
'description' => 'Configure the Contact attach module.',
);
return $items;
}