You are here

fbconnect.rules.inc in Facebook Connect 8.2

Same filename and directory in other branches
  1. 6.2 fbconnect.rules.inc
  2. 7.2 fbconnect.rules.inc

Rules integration for the fbconnect module.

File

fbconnect.rules.inc
View source
<?php

/**
 * @file
 * Rules integration for the fbconnect module.
 *
 * @addtogroup rules
 * @{
 */

/**
 * Implements hook_rules_event_info().
 */
function fbconnect_rules_event_info() {
  return array(
    'fbconnect_user_registered' => array(
      'label' => t('User has connected his Facebook Account'),
      'module' => 'fbconnect',
      'variables' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('granted facebook auth user'),
        ),
      ),
    ),
    'fbconnect_user_unregistered' => array(
      'label' => t('User has disconnected his Facebook Account'),
      'module' => 'fbconnect',
      'variables' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('revoked facebook auth user'),
        ),
      ),
    ),
    'fbconnect_user_login' => array(
      'label' => t('User has logged in via Facebook'),
      'module' => 'fbconnect',
      'variables' => array(
        'account' => array(
          'type' => 'user',
          'label' => t('logged in via facebook user'),
        ),
      ),
    ),
  );
}

/**
 * @}
 */

Functions

Namesort descending Description
fbconnect_rules_event_info Implements hook_rules_event_info().