function merci_theme in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6.2
Same name and namespace in other branches
- 6 merci.module \merci_theme()
- 7.2 merci.module \merci_theme()
Implementation of hook_theme().
File
- ./
merci.module, line 953 - MERCI - Managed Equipment Reservation Checkout and Inventory
Code
function merci_theme() {
return array(
'merci_choices' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'theme.inc',
),
'merci_build_reservation_table_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'theme/theme.inc',
),
'merci_conflict_grid' => array(
'template' => 'merci_conflict_grid',
'arguments' => array(
'type' => NULL,
'title' => NULL,
'start' => NULL,
'end' => NULL,
'nid' => NULL,
'reservation_nid' => NULL,
),
'path' => drupal_get_path('module', 'merci') . '/theme',
'file' => 'theme.inc',
),
'merci_reservation_table' => array(
'template' => 'merci_reservation_table',
'path' => drupal_get_path('module', 'merci') . '/theme',
'arguments' => array(
'reservations' => NULL,
'count' => NULL,
'hours' => NULL,
'title' => NULL,
),
),
'merci_current_inventory' => array(
'path' => drupal_get_path('module', 'merci') . '/theme',
'file' => 'theme.inc',
),
'merci_type_setting' => array(
'path' => drupal_get_path('module', 'merci') . '/theme',
'arguments' => array(
'form' => NULL,
),
'file' => 'theme.inc',
),
);
}