You are here

function heartbeat_comments_theme in Heartbeat 7

Same name and namespace in other branches
  1. 6.4 modules/heartbeat_comments/heartbeat_comments.module \heartbeat_comments_theme()

Implements hook_theme().

File

modules/heartbeat_comments/heartbeat_comments.module, line 117
Heartbeat comments for activity.

Code

function heartbeat_comments_theme() {
  return array(
    'heartbeat_comments' => array(
      'variables' => array(
        'comments' => NULL,
        'activity' => NULL,
      ),
    ),
    'heartbeat_comment' => array(
      'variables' => array(
        'comment' => NULL,
        'node_comment' => FALSE,
        'last' => FALSE,
      ),
    ),
    'heartbeat_no_comment' => array(
      'variables' => array(
        'comment' => NULL,
        'node_comment' => FALSE,
        'last' => FALSE,
      ),
    ),
  );
}