You are here

fb_rules.rules.inc in Drupal for Facebook 6.3

Same filename and directory in other branches
  1. 7.3 contrib/fb_rules.rules.inc

fb_rules.rules.inc Rules integration for the Drupal for Facebook module.

File

contrib/fb_rules.rules.inc
View source
<?php

/**
 * @file fb_rules.rules.inc
 * Rules integration for the Drupal for Facebook module.
 */

/**
 * Implementation of hook_rules_event_info().
 * @ingroup rules
 */
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).'),
        ),
      ),
    ),
  );
}

Functions

Namesort descending Description
fb_rules_rules_event_info Implementation of hook_rules_event_info().