You are here

function heartbeat_theme in Heartbeat 6.2

Same name and namespace in other branches
  1. 8 heartbeat.module \heartbeat_theme()
  2. 6.4 heartbeat.module \heartbeat_theme()
  3. 6.3 heartbeat.module \heartbeat_theme()
  4. 7 heartbeat.module \heartbeat_theme()

Implementation of hook_theme().

File

./heartbeat.module, line 265
To fully understand this, you have to be familiar with the rules module. Lots of documentation can be found on http://drupal.org/node/298480 for an introduction and tutorial, but http://drupal.org/node/298486 is a lot of handy info for developers.

Code

function heartbeat_theme() {
  return array(
    'heartbeat_block' => array(
      'arguments' => array(
        'messages' => array(),
      ),
    ),
  );
}