You are here

function userpoints_rules_data_type_info in User Points 6

Implementation of hook_rules_data_type_info().

File

./userpoints_rules.rules.inc, line 11
Provide better integration into the rules module

Code

function userpoints_rules_data_type_info() {
  return array(
    'userpoints_transaction' => array(
      'label' => t('Userpoints transaction'),
      'class' => 'rules_data_type',
      'identifiable' => FALSE,
      'hidden' => TRUE,
    ),
  );
}