You are here

function redhen_contact_theme in RedHen CRM 7

Same name and namespace in other branches
  1. 8 modules/redhen_contact/redhen_contact.module \redhen_contact_theme()

Implements hook_theme().

File

modules/redhen_contact/redhen_contact.module, line 357
Module file for RedHen contacts.

Code

function redhen_contact_theme() {
  return array(
    'redhen_contact_add_list' => array(
      'variables' => array(
        'content' => NULL,
      ),
    ),
    'redhen_contact_list' => array(
      'variables' => array(
        'contacts' => NULL,
        'header' => NULL,
        'rows' => NULL,
      ),
    ),
  );
}