You are here

function rules_action_data_convert_types_options in Rules 7.2

Data conversation action: Options list callback for the target type.

Related topics

1 string reference to 'rules_action_data_convert_types_options'
rules_data_action_info in modules/data.rules.inc
Implements hook_rules_action_info() on behalf of the pseudo data module.

File

modules/data.rules.inc, line 247
General data related rules integration.

Code

function rules_action_data_convert_types_options(RulesPlugin $element, $param_name) {
  return array(
    'decimal' => t('Decimal'),
    'integer' => t('Integer'),
    'text' => t('Text'),
    'token' => t('Token'),
  );
}