You are here

function privatemsg_rules_rules_data_type_info in Privatemsg 6.2

Implements hook_rules_data_type_info().

File

privatemsg_rules/privatemsg_rules.rules.inc, line 102
Hooks and callback functions for rules.module integration.

Code

function privatemsg_rules_rules_data_type_info() {
  return array(
    'tag' => array(
      'label' => t('user'),
      'class' => 'privatemsg_rules_data_type_tag',
      'savable' => FALSE,
      'identifiable' => TRUE,
    ),
  );
}