1 contact.module | contact_block_info() |
Implements hook_block_info().
File
- core/
modules/ contact/ contact.module, line 358 - Enables the use of personal and site-wide contact forms.
Code
function contact_block_info() {
$blocks['sitewide'] = array(
'info' => t('Contact form'),
'description' => t('Site-wide contact form.'),
);
return $blocks;
}