function rules_action_data_convert_types_options
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
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'),
);
}