You are here

function webform_rules_data_type_info in Webform Rules 6

Implementation of hook_rules_data_type_info().

File

./webform_rules.rules.inc, line 62
Functions for rules integration.

Code

function webform_rules_data_type_info() {
  return array(
    'webform_data' => array(
      'label' => t('webform data'),
      'class' => 'webform_rules_data_type_webform_data',
      'savable' => TRUE,
      'identifiable' => FALSE,
      'use_input_form' => FALSE,
      'module' => 'Webform',
      'token type' => 'webform',
    ),
  );
}