You are here

function rules_get_data_types in Rules 6

Returns info about all defined data types

8 calls to rules_get_data_types()
rules_admin_argument_satisifable in rules_admin/rules_admin.inc
Determines whether the argument can be configured properly, so whether there are matching variables available or needed.
rules_core_action_execute_form in rules/modules/rules.rules.inc
Action form implementation: Get the core actions form
rules_data_type::construct in rules/rules.data_types.inc
Constructor
rules_get_data_object in rules/rules.data_types.inc
Gets the right data object for the given argument information
rules_get_settings_to_evaluate in rules/rules.input_evaluators.inc
Gets all settings that should be evaluated - this are manually specified settings and arguments of a data type like string, which has 'eval input' turned on.

... See full list

File

rules/rules.module, line 45
Rules engine module

Code

function rules_get_data_types($key = 'all') {
  return rules_gather_data('rules_data_type_info', $key);
}