You are here

function rules_action_data_list_add_positions in Rules 7.2

Options list callback for possible insertion positions.

Related topics

1 string reference to 'rules_action_data_list_add_positions'
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 428
General data related rules integration.

Code

function rules_action_data_list_add_positions() {
  return array(
    'end' => t('Append the item to the end.'),
    'start' => t('Prepend the item to the front.'),
  );
}