You are here

function fb_rules_rules_event_info in Drupal for Facebook 6.3

Same name and namespace in other branches
  1. 7.3 contrib/fb_rules.rules.inc \fb_rules_rules_event_info()

Implementation of hook_rules_event_info().

File

contrib/fb_rules.rules.inc, line 12
fb_rules.rules.inc Rules integration for the Drupal for Facebook module.

Code

function fb_rules_rules_event_info() {
  return array(
    'fb_user_connected' => array(
      'label' => t('User has connected his Facebook account'),
      'module' => 'Drupal for Facebook',
      'arguments' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('User allowed Facebook App access'),
        ),
      ),
    ),
    'fb_user_disconnected' => array(
      'label' => t('User has disconnected his Facebook account.'),
      'module' => 'Drupal for Facebook',
      'arguments' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('User revoked Facebook App access.'),
        ),
      ),
    ),
    'fb_user_login' => array(
      'label' => t('User has logged in via Facebook'),
      'module' => 'Drupal for Facebook',
      'arguments' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('User who has logged in via Facebook.'),
        ),
      ),
    ),
    'fb_invite_submitted' => array(
      'label' => t('User submitted Facebook invitation'),
      'module' => 'Drupal for Facebook',
      'arguments' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('User who submitted invitation.'),
        ),
      ),
    ),
    'fb_invite_accepted' => array(
      'label' => t('UserA accepted UserB Facebook invitation'),
      'module' => 'Drupal for Facebook',
      'arguments' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('UserB (inviter).'),
        ),
      ),
    ),
  );
}