You are here

function push_notifications_target_group_options in Push Notifications 7

Defines target groups for bulk message alert.

Return value

array

1 string reference to 'push_notifications_target_group_options'
push_notifications_rules_action_info in ./push_notifications.rules.inc
Implements hook_rules_action_info().

File

./push_notifications.rules.inc, line 58
Administration Events Rule for Push Notifications.

Code

function push_notifications_target_group_options() {
  return array(
    'any' => t('All tokens'),
    'authenticated' => t('Tokens belonging to authenticated users only'),
    'anonymous' => t('Tokens belonging to anonymous users only'),
  );
}