1.20.x contact.module contact_theme()

Implements hook_theme().

File

modules/contact/contact.module, line 10
Enables the use of personal and site-wide contact forms.

Code

function contact_theme() {
  return array(
    'contact_category_list_table' => array(
      'render element' => 'element',
      'file' => 'contact.theme.inc',
    ),
    'contact_form_permissions' => array(
      'render element' => 'form',
      'function' => 'theme_user_admin_permissions',
    ),
  );
}