You are here

function heartbeat_comments_rules_data_type_info in Heartbeat 6.4

Implementation of hook_rules_data_type_info().

File

modules/heartbeat_comments/heartbeat_comments.rules.inc, line 43

Code

function heartbeat_comments_rules_data_type_info() {
  return array(
    'heartbeat_comment' => array(
      'label' => t('Heartbeat comment'),
      'class' => 'rules_data_type_heartbeat_comment',
      'savable' => FALSE,
      'identifiable' => TRUE,
      'module' => 'heartbeat_comments',
    ),
  );
}