You are here

function comment_rules_data_type_info in Rules 6

Implementation of hook_rules_data_type_info()

Related topics

File

rules/modules/comment.rules.inc, line 144
rules integration for the comment module

Code

function comment_rules_data_type_info() {
  return array(
    'comment' => array(
      'label' => t('comment'),
      'class' => 'rules_data_type_comment',
      'savable' => FALSE,
      'identifiable' => TRUE,
      'module' => 'Comment',
    ),
  );
}