You are here

function heartbeat_example_theme in Heartbeat 6.4

Implementation of hook_theme().

File

modules/heartbeat_example/heartbeat_example.module, line 31

Code

function heartbeat_example_theme() {
  return array(
    // Theme article heartbeat node
    'heartbeat_content' => array(
      'arguments' => array(
        'message' => NULL,
        'node' => NULL,
      ),
    ),
  );
}