You are here

function shouts_rules_data_type_info in Heartbeat 6.4

Implementation of hook_rules_data_type_info().

File

modules/shouts/shouts.rules.inc, line 30
shouts.rules.inc.

Code

function shouts_rules_data_type_info() {
  return array(
    'shout' => array(
      'label' => t('shout'),
      'class' => 'rules_data_type_shout',
      'savable' => FALSE,
      'identifiable' => TRUE,
      'module' => 'shouts',
    ),
  );
}