You are here

function merci_theme in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6

Same name and namespace in other branches
  1. 6.2 merci.module \merci_theme()
  2. 7.2 merci.module \merci_theme()

Implementation of hook_theme().

File

./merci.module, line 1608
MERCI - Managed Equipment Reservation Checkout and Inventory

Code

function merci_theme() {
  return array(
    'merci_choices' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'merci_build_reservation_table_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'merci_reservation_table' => array(
      'template' => 'merci_reservation_table',
      'path' => drupal_get_path('module', 'merci') . '/templates',
      'arguments' => array(
        'reservations' => NULL,
        'count' => NULL,
        'hours' => NULL,
        'title' => NULL,
      ),
    ),
  );
}