You are here

function heartbeat_comments_theme in Heartbeat 6.4

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

Implementation of hook_theme().

File

modules/heartbeat_comments/heartbeat_comments.module, line 29
heartbeat_comments.module Heartbeat comments can come with two possible

Code

function heartbeat_comments_theme($existing, $type, $theme, $path) {
  return array(
    'heartbeat_comments_admin_overview' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'heartbeat_comments' => array(
      'arguments' => array(
        'comments' => NULL,
        'uaid' => 0,
        'node_comment' => FALSE,
        'has_more' => FALSE,
      ),
    ),
    'heartbeat_comment' => array(
      'arguments' => array(
        'comment' => NULL,
        'node_comment' => FALSE,
      ),
    ),
  );
}