You are here

function module_grants_monitor_theme in Module Grants 6.4

Same name and namespace in other branches
  1. 6.3 module_grants_monitor/module_grants_monitor.module \module_grants_monitor_theme()

Implementation of hook_theme().

Register the theme_hooks() available in this module, with their arguments and default values.

File

module_grants_monitor/module_grants_monitor.module, line 80

Code

function module_grants_monitor_theme() {
  return array(
    'module_grants_monitor_nodes_summary' => array(
      // to call theme_module_grants_monitor_nodes_summary($nodes)
      'arguments' => array(
        'nodes' => NULL,
      ),
    ),
  );
}