You are here

function ga_push_get_event_non_interaction_option_list in GA Push 7

Same name and namespace in other branches
  1. 8 ga_push.module \ga_push_get_event_non_interaction_option_list()

Get the event non interaction rules options list.

1 string reference to 'ga_push_get_event_non_interaction_option_list'
ga_push_rules_action_info in ./ga_push.rules.inc
Implements hook_rules_action_info().

File

./ga_push.module, line 649
Drupal Module: GA Push.

Code

function ga_push_get_event_non_interaction_option_list() {
  return array(
    FALSE => t("False"),
    TRUE => t("True"),
  );
}